Skip to content

Commit bebad8d

Browse files
committed
[exercises] Fix 'unecessary' typo.
1 parent 0efec3b commit bebad8d

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

exercises/async_loops/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The order of the users should match the order of supplied user ids. Because this
3030
* Do not use for/while loops (Array#forEach ok).
3131
* The order of the results in `done` must be the same as they were specified in `userIds`.
3232
* Users should be loaded in parallel i.e. the entire job should not take more than 1 second.
33-
* Do not create any unecessary functions e.g. helpers.
33+
* Do not create any unnecessary functions e.g. helpers.
3434

3535
## Hint
3636

exercises/basic_call/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ duckCount(duck, notDuck) // 1
7171

7272
* Do not use any for/while loops or Array#forEach.
7373
* Do not create any counter/accumulator variables.
74-
* Do not create any unecessary functions e.g. helpers.
74+
* Do not create any unnecessary functions e.g. helpers.
7575

7676
## Hint
7777

exercises/basic_inheritance_with_objectcreate/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ console.log('Hello ' + joe) // 'Hello [BetterUser: Mr. Joe Smith]'
5151

5252
* Don't call the User constructor unnecessarily!
5353
* Don't use `__proto__`
54-
* Do not create any unecessary functions e.g. helpers.
54+
* Do not create any unnecessary functions e.g. helpers.
5555

5656
## Resources
5757

exercises/basic_map/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = doubleAll
2222

2323
* Your solution should use Array.prototype.map()
2424
* Do not use any for/while loops or Array.prototype.forEach.
25-
* Do not create any unecessary functions e.g. helpers.
25+
* Do not create any unnecessary functions e.g. helpers.
2626

2727
## Resources
2828

exercises/basic_reduce/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ console.log(countWords(inputWords))
2424
## Conditions
2525

2626
* Do not use any for/while loops or Array#forEach.
27-
* Do not create any unecessary functions e.g. helpers.
27+
* Do not create any unnecessary functions e.g. helpers.
2828

2929
## Resources
3030

exercises/blocking_event_loop/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Try to perform as many operations as you can before the timeout fires!
99
## Conditions
1010

1111
* Do not use any for/while loops or Array#forEach.
12-
* Do not create any unecessary functions e.g. helpers.
12+
* Do not create any unnecessary functions e.g. helpers.
1313

1414
## Hints
1515

exercises/function_spies/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ console.log(spy.count) // 3
2424
## Conditions
2525

2626
* Do not use any for/while loops or Array#forEach.
27-
* Do not create any unecessary functions e.g. helpers.
27+
* Do not create any unnecessary functions e.g. helpers.
2828

2929
## Hint
3030

exercises/higher_order_functions/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Use the boilerplate code given to you below to get started. Most/all future exer
2727
* https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Functions_and_function_scope
2828
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/prototype
2929

30-
## Hints
30+
## Hints
3131

3232
* Don't overthink it, the code should be rather simple.
3333
* It's ok to use a loop in your implementation, bonus points

0 commit comments

Comments
 (0)