Skip to content

Commit c4e7b3f

Browse files
unfirthmanBethanyG
authored andcommitted
Added a period to the introduction.md
1 parent ed724ad commit c4e7b3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A [`list`][list] is a mutable collection of items in _sequence_.
44
Like most collections (_see the built-ins [`tuple`][tuple], [`dict`][dict] and [`set`][set]_), lists can hold reference to any (or multiple) data type(s) - including other lists.
55
Like any [sequence][sequence type], items can be accessed via `0-based index` number from the left and `-1-base index` from the right.
6-
Lists can be copied in whole or in part via [slice notation][slice notation] or `<list>.copy()`
6+
Lists can be copied in whole or in part via [slice notation][slice notation] or `<list>.copy()`.
77

88
Lists support both [common][common sequence operations] and [mutable][mutable sequence operations] sequence operations such as `min()`/`max()`, `<list>.index()`, `<list>.append()` and `<list>.reverse()`.
99
List elements can be iterated over using the `for item in <list>` construct.

0 commit comments

Comments
 (0)