@@ -12,7 +12,7 @@ Given a date from the Gregorian calendar defined via POST data, returns the corr
## Running
-To launch the API server, simply navigate to the main folder and type 'npm run start'.
+To launch the API server, simply navigate to the main folder and type `npm start`.
## Examples
@@ -1,7 +1,7 @@
'use strict';
-module.exports = function(app) {
- var bDate = require('../controllers/bDateController');
+var bDate = require('../controllers/bDateController');
+module.exports = function(app) {
// API test
app.route('/test')
.get(bDate.test);