Skip to content

Commit

Permalink
Remove spurious apostrophe
Browse files Browse the repository at this point in the history
  • Loading branch information
ayeseeem committed Mar 7, 2018
1 parent fe9b870 commit fa6673d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ch10.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ We're almost finished with container apis. We've learned how to `map`, `chain`,
## Exercises

{% exercise %}
Write a function that add's two possibly null numbers together using `Maybe` and `ap`.
Write a function that adds two possibly null numbers together using `Maybe` and `ap`.

{% initial src="./exercises/ch10/exercise_a.js#L3;" %}
```js
Expand Down
2 changes: 1 addition & 1 deletion exercises/ch10/exercise_a.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Write a function that add's two possibly null numbers together using `Maybe` and `ap`.
// Write a function that adds two possibly null numbers together using `Maybe` and `ap`.

// safeAdd :: Maybe Number -> Maybe Number -> Maybe Number
const safeAdd = undefined;

0 comments on commit fa6673d

Please sign in to comment.