Skip to content

Commit d238369

Browse files
committed
Merge pull request GitbookIO#73 from Joseworks/typo_section_7_2
Small typos corrections.
2 parents 77643d7 + 8a8942b commit d238369

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

functions/higher_order.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ map(double, [5,6,7]) // => [10, 12, 14]
3535

3636
The functions in the above example are simple. However, when passed as arguments to other functions, they can be composed in unforeseen ways to build more complex functions.
3737

38-
For example, if we notice that we use the invocations `map(add_2, ...)` and `map(double, ...)` very often in our code, we could decide we want to create two special-purpse list processing functions that have the desired operation baked into them. Using function composition, we could do this as follows:
38+
For example, if we notice that we use the invocations `map(add_2, ...)` and `map(double, ...)` very often in our code, we could decide we want to create two special-purpose list processing functions that have the desired operation baked into them. Using function composition, we could do this as follows:
3939

4040
```javascript
4141
process_add_2 = function(list) {

objects/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var stringRepresentation = adult.toString();
1515
// the variable has value of '[object Object]'
1616
```
1717

18-
`toString` is an Object.prototype's property, which was inhereted. It has a value of a function, which returns a string representation of the object. If you want it to return a more meaningful representation, then you can override it. Simply add a new property to the adult object.
18+
`toString` is an Object.prototype's property, which was inherited. It has a value of a function, which returns a string representation of the object. If you want it to return a more meaningful representation, then you can override it. Simply add a new property to the adult object.
1919

2020
```js
2121
adult.toString = function(){

0 commit comments

Comments
 (0)