From 477275c0303ab98270255357df267b11be737fab Mon Sep 17 00:00:00 2001 From: user202729 <25191436+user202729@users.noreply.github.com> Date: Mon, 27 Mar 2023 20:53:43 +0700 Subject: [PATCH] Fix a typo in documentation (#339) --- docs/src/reference/types.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/reference/types.md b/docs/src/reference/types.md index 59333eb89..3dbea5cd9 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()