From d5c551e8bb0228530b58c309a13876cffd018e63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 22 Mar 2019 16:18:11 +0100 Subject: [PATCH] Dict --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3412f1a..291ae08 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Dictionary ```python = .keys() # Coll. of keys that reflects changes. = .values() # Coll. of values that reflects changes. - = .items() # Coll. of key-value pairs. + = .items() # Coll. of key-value tuples. ``` ```python