diff --git a/README.md b/README.md index 5328749..635d8c5 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,9 @@ list_of_chars = list() ``` ```python -.insert(index, ) - = .pop([index]) -.remove() +.insert(index, ) # Inserts item at index and moves the rest right. + = .pop([index]) # Removes and returns item at index. +.remove() # Removes first occurance of item. index = .index(, [start, [stop]]) ```