Skip to content

Commit 5ddde90

Browse files
committed
Update exercises/concept/chaitanas-colossal-coaster/.docs/introduction.md
1 parent 5ab85fc commit 5ddde90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/chaitanas-colossal-coaster/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ It takes 2 parameters:
3737
[-2, 0, 1, 2, 3]
3838
```
3939

40-
`list.extend()` can be used to combine an existing list with the elements from another iterable (for example, a `set`, `tuple`, `str`, or `list`). The iterable is _unpacked_ and elements are appended in order. (_using `.append()` in this circumstance would add the entire iterable as a **single item**._).
40+
`<list>.extend()` can be used to combine an existing list with the elements from another iterable (for example, a `set`, `tuple`, `str`, or `list`). The iterable is _unpacked_ and elements are appended in order. (_Using `<list>.append()` in this circumstance would add the entire iterable as a **single item**._).
4141

4242
```python
4343
>>> numbers = [1, 2, 3]

0 commit comments

Comments
 (0)