From f87bc2ec01c8eb7886c110ac4f0919a036420167 Mon Sep 17 00:00:00 2001 From: Ananya Pahwa <138243485+ananyapahwa@users.noreply.github.com> Date: Tue, 9 Dec 2025 16:20:41 +0530 Subject: [PATCH] fix(curriculum): correct grammar in dictionaries lecture (#64393) --- .../683ec7a722bc7b67c1132bd3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-dictionaries-and-sets/683ec7a722bc7b67c1132bd3.md b/curriculum/challenges/english/blocks/lecture-working-with-dictionaries-and-sets/683ec7a722bc7b67c1132bd3.md index 86465ef25f5..fc049a4e444 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-dictionaries-and-sets/683ec7a722bc7b67c1132bd3.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-dictionaries-and-sets/683ec7a722bc7b67c1132bd3.md @@ -81,7 +81,7 @@ print(pizza['name']) # 'Margherita' Dictionaries also have helpful methods to perform common operations. -The `.get()` method retrieves the value associated with a key. It's similar to the bracket notation that we just used, but its advantage is that you can set a default value, so you won't get an error is the key doesn't exist: +The `.get()` method retrieves the value associated with a key. It's similar to the bracket notation that we just used, but its advantage is that you can set a default value, so you won't get an error if the key doesn't exist: ```python dictionary.get(key, default)