summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authoruser202729 <25191436+user202729@users.noreply.github.com>2023-03-27 20:53:43 +0700
committerGitHub <noreply@github.com>2023-03-27 15:53:43 +0200
commit477275c0303ab98270255357df267b11be737fab (patch)
tree677b7b00e5cc4a658c49b18ca9f2596ab6994639 /docs/src
parentd71c933cca6c9b58a0d560b10f07aefc8243f932 (diff)
Fix a typo in documentation (#339)
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/reference/types.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/reference/types.md b/docs/src/reference/types.md
index 59333eb8..3dbea5cd 100644
--- a/docs/src/reference/types.md
+++ b/docs/src/reference/types.md
@@ -702,8 +702,8 @@ May be used on the left-hand side of an assignment if the key is already
present in the dictionary.
Fails with an error if the key is not part of the dictionary.
-- index: integer (positional, required)
- The index at which to retrieve the item.
+- key: string (positional, required)
+ The key at which to retrieve the item.
- returns: any
### insert()