Skip to content

Commit 6a6eacf

Browse files
authored
added missing greater-than sign in about.md (#3557)
1 parent 1cd88ed commit 6a6eacf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

concepts/lists/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A [`list`][list] is a mutable collection of items in _sequence_.
77

88

99
Lists support both [common][common sequence operations] and [mutable][mutable sequence operations] sequence operations such as `min()`/`max()`, `<list>.index()`, `.append()` and `.reverse()`.
10-
List elements can be iterated over using the `for item in <list>` construct. `for index, item in enumerate(<list)` can be used when both the element index and the element value are needed.
10+
List elements can be iterated over using the `for item in <list>` construct. `for index, item in enumerate(<list>)` can be used when both the element index and the element value are needed.
1111

1212

1313
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 (_the number of entries may arbitrarily expand or shrink_).

0 commit comments

Comments
 (0)