From f8d5a5403890a7a80211dd83fe437e84b539d76d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 20 Apr 2018 00:56:07 +0200 Subject: [PATCH] List --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6d5334a..8657b46 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ list_of_chars = list() index = .index() # Returns first index of item. .insert(index, ) # Inserts item at index and moves the rest to the right. = .pop([index]) # Removes and returns item at index or from the end. -.remove() # Removes first occurance of item. +.remove() # Removes first occurrence of item. .clear() # Removes all items. ```