Skip to content

Commit faeef2b

Browse files
kristjanv001BethanyG
authored andcommitted
Update introduction.md
typo
1 parent f325a0d commit faeef2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

exercises/concept/card-games/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Lists support both [common][common sequence operations] and [mutable][mutable se
99
List elements can be iterated over using the `for item in <list>` construct.
1010
`for index, item in enumerate(<list>)` can be used when both the element index and the element value are needed.
1111

12-
Under the hood, `lists` are implemented as [dynamic arrays][dynamic array] -- similar to Java's [`Arraylist`][arraylist] type, and are most often used to store groups of similar data (_strings, numbers, sets etc._) of unknown length.
12+
Under the hood, `lists` are implemented as [dynamic arrays][dynamic array] -- similar to Java's [`ArrayList`][arraylist] type, and are most often used to store groups of similar data (_strings, numbers, sets etc._) of unknown length.
1313
Lists are an extremely flexible and useful data structure and many built-in methods and operations in Python produce lists as their output.
1414

1515

0 commit comments

Comments
 (0)