Skip to content

Commit

Permalink
added missing greater-than sign in about.md (#3557)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoPro0 authored Dec 4, 2023
1 parent 1cd88ed commit 6a6eacf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion concepts/lists/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A [`list`][list] is a mutable collection of items in _sequence_.


Lists support both [common][common sequence operations] and [mutable][mutable sequence operations] sequence operations such as `min()`/`max()`, `<list>.index()`, `.append()` and `.reverse()`.
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.
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.


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_).
Expand Down

0 comments on commit 6a6eacf

Please sign in to comment.