From f4307c7d0f00c01c63c5f9a4e33ab9e28251007b Mon Sep 17 00:00:00 2001 From: Clarence Bakosi Date: Mon, 11 Aug 2025 12:13:24 +0100 Subject: [PATCH] fix(curriculum): fixed typo in workshop medical data validator step 17 (#61767) --- .../workshop-medical-data-validator/6846ac424529900e7327d326.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-medical-data-validator/6846ac424529900e7327d326.md b/curriculum/challenges/english/25-front-end-development/workshop-medical-data-validator/6846ac424529900e7327d326.md index 135bbb4a986..ee11c00d809 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-medical-data-validator/6846ac424529900e7327d326.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-medical-data-validator/6846ac424529900e7327d326.md @@ -14,7 +14,7 @@ integers = set([3, 5, 1, 2, 1, 3, 4]) print(integers) # {1, 2, 3, 4, 5} ``` -You're going to use a set to ensure that each dictionary does not contain extra or mispelled keys. +You're going to use a set to ensure that each dictionary does not contain extra or misspelled keys. Use the `set()` constructor to create a set from the following list of keys that each dictionary should have: `['patient_id', 'age', 'gender', 'diagnosis', 'medications', 'last_visit_id']`. Assign the set to a variable named `key_set`.