Skip to content

Commit

Permalink
Fix typos on a couple of READMEs and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
skkeeper committed Feb 13, 2016
1 parent 218f51b commit 8acc784
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion morse-code/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Let's create a morse code transmitter

Create a function that gets injected: a lightbulb toggler function, a timeout mechanism function, a string message, and a map of chars to dot-dashes and make magic happen, addionally it should run a callback when done
Create a function that gets injected: a lightbulb toggler function, a timeout mechanism function, a string message, and a map of chars to dot-dashes and make magic happen, additionally it should run a callback when done

The timeout mechanism is like setTimeout, the difference is that it takes a measurement of dots instead of ms so instead of `setTimeout(toggle, 150)` for dot you would do `options.timeouter(toggle, 1)` and for a dash you would do `options.timeouter(toggle, 3)`

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"description": "some javascript exercises",
"scripts": {
"test": "echo \"Error: run npm test from inside the challange directories or do 'npm run test-all'\" && exit 1",
"test": "echo \"Error: run npm test from inside the challenge directories or do 'npm run test-all'\" && exit 1",
"test-all": "mocha '**/test.js'"
},
"author": "Moshe Kolodny",
Expand Down
2 changes: 1 addition & 1 deletion value/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var whoa = function() {

value(scalar); // should be 'foo'
value(fn); // should be 'bar'
value(fnTwice); // should aslo be 'bar'
value(fnTwice); // should also be 'bar'
value(fnThrice); // should also be 'bar'

value(whoa); // should be 'hi'
Expand Down

0 comments on commit 8acc784

Please sign in to comment.