Skip to content

Commit f7f6e9d

Browse files
authored
fix(curriculum): correct typo in recipe tracker step 6 (freeCodeCamp#65123)
1 parent 24fa7a1 commit f7f6e9d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

curriculum/challenges/english/blocks/workshop-recipe-tracker/670e4f45f7116c0f216a5177.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Access the `name` property of `recipe1`, and assign it to the variable `recipe1N
2626

2727
Next, access the `cookingTime` property of `recipe2` and assign it to the variable `recipe2CookingTime`.
2828

29-
Finialy, access the `ingredients` property of `recipe3` and assign it to the variable `recipe3Ingredients`.
29+
Finally, access the `ingredients` property of `recipe3` and assign it to the variable `recipe3Ingredients`.
3030

3131
Make sure all the variables you created are logged to the console.
3232

@@ -68,7 +68,7 @@ You should log `recipe2CookingTime` to the console.
6868
assert.match(code, /console\.log\(recipe2CookingTime\)/);
6969
```
7070

71-
You sould create a `recipe3Ingredients` variable.
71+
You should create a `recipe3Ingredients` variable.
7272

7373
```js
7474
assert.isDefined(recipe3Ingredients);

0 commit comments

Comments
 (0)