diff --git a/examples/multi-router/index.js b/examples/multi-router/index.js index ff31e514..78bae9d6 100644 --- a/examples/multi-router/index.js +++ b/examples/multi-router/index.js @@ -6,7 +6,7 @@ app.use('/api/v1', require('./controllers/api_v1')); app.use('/api/v2', require('./controllers/api_v2')); app.get('/', function(req, res) { - res.send('Hello form root route.'); + res.send('Hello from root route.') }); /* istanbul ignore next */ diff --git a/test/acceptance/multi-router.js b/test/acceptance/multi-router.js index 9590ee94..4362a830 100644 --- a/test/acceptance/multi-router.js +++ b/test/acceptance/multi-router.js @@ -6,7 +6,7 @@ describe('multi-router', function(){ it('should respond with root handler', function(done){ request(app) .get('/') - .expect(200, 'Hello form root route.', done) + .expect(200, 'Hello from root route.', done) }) })