diff --git a/advanced-js-node-express/README.md b/advanced-js-node-express/README.md index e95931c..3c9183d 100644 --- a/advanced-js-node-express/README.md +++ b/advanced-js-node-express/README.md @@ -9,6 +9,6 @@ Please read the following articles and complete the activites built into the art 4. [CLI - Git](https://github.com/Drewbie345/okcoders-fall2015/blob/master/advanced-js-node-express/git.md) 5. [CLI - Heroku](https://github.com/Drewbie345/okcoders-fall2015/blob/master/advanced-js-node-express/heroku.md) 6. [Intro to Node.js](https://github.com/Drewbie345/okcoders-fall2015/blob/master/advanced-js-node-express/intro-node-js.md) -7. [NPM - Node Packaging Manager](https://github.com/Drewbie345/okcoders-fall2015/tree/master/advanced-js-node-express) +7. [NPM - Node Packaging Manager](https://github.com/Drewbie345/okcoders-fall2015/tree/master/advanced-js-node-express/npm.md) 8. [HTTP](https://github.com/Drewbie345/okcoders-fall2015/blob/master/advanced-js-node-express/http.md) 9. [Express Routing](https://github.com/Drewbie345/okcoders-fall2015/blob/master/advanced-js-node-express/routing.md) \ No newline at end of file diff --git a/advanced-js-node-express/oop-js.md b/advanced-js-node-express/oop-js.md index acd88d7..b10042c 100644 --- a/advanced-js-node-express/oop-js.md +++ b/advanced-js-node-express/oop-js.md @@ -88,7 +88,7 @@ var foo = { console.log('called bar'); this.baz(); }, - baz: functino() { + baz: function() { console.log('called baz'); } };