Skip to content

Commit bce0ee2

Browse files
authored
[Lists] Fix typo (#3737)
1 parent c3278e1 commit bce0ee2

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
@@ -296,7 +296,7 @@ Assigning a `list` object to a new variable _name_ **does not copy the `list` ob
296296
Any change made to the elements in the `list` under the _new_ name _impact the original_.
297297

298298

299-
Making a `shallow_copy` via `list.copy()` or slice will avoid this first-leve referencing complication.
299+
Making a `shallow_copy` via `list.copy()` or slice will avoid this first-level referencing complication.
300300
A `shallow_copy` will create a new `list` object, but **will not** create new objects for the contained list _elements_. This type of copy will usually be enough for you to add or remove items from the two `list` objects independently, and effectively have two "separate" lists.
301301

302302

0 commit comments

Comments
 (0)