Skip to content

Commit f4307c7

Browse files
authored
fix(curriculum): fixed typo in workshop medical data validator step 17 (freeCodeCamp#61767)
1 parent e9ee37c commit f4307c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

curriculum/challenges/english/25-front-end-development/workshop-medical-data-validator/6846ac424529900e7327d326.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ integers = set([3, 5, 1, 2, 1, 3, 4])
1414
print(integers) # {1, 2, 3, 4, 5}
1515
```
1616

17-
You're going to use a set to ensure that each dictionary does not contain extra or mispelled keys.
17+
You're going to use a set to ensure that each dictionary does not contain extra or misspelled keys.
1818

1919
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`.
2020

0 commit comments

Comments
 (0)