From 528a9c57fdcf805fe489d719261ad8fb8737151b Mon Sep 17 00:00:00 2001 From: Michal Petrik Date: Sun, 15 May 2022 11:13:53 +0200 Subject: [PATCH] Update 20-adding-removing-finding.md --- .../080-advanced-datatypes/20-adding-removing-finding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/02-introduction-to-python/080-advanced-datatypes/20-adding-removing-finding.md b/website/content/02-introduction-to-python/080-advanced-datatypes/20-adding-removing-finding.md index f922e28..c688479 100644 --- a/website/content/02-introduction-to-python/080-advanced-datatypes/20-adding-removing-finding.md +++ b/website/content/02-introduction-to-python/080-advanced-datatypes/20-adding-removing-finding.md @@ -163,7 +163,7 @@ Or, when used with `my_list.index(item)`: ``` {{% notice info %}} -You'll see a `IndexError: list assignment index out of range` if you try to update an item in a position that doesn't exist, that is *if the position is greater than or equal to `>=` the length of the list*. +You'll see an `IndexError: list assignment index out of range` if you try to update an item in a position that doesn't exist, that is *if the position is greater than or equal to `>=` the length of the list*. {{% /notice %}} ```python