From 29c28f2af52789017b51169468678536d9880d0a Mon Sep 17 00:00:00 2001 From: Katrina Owen Date: Sun, 9 Dec 2012 17:35:15 +0100 Subject: [PATCH] Fix typo --- sinatra-contrib/spec/multi_route_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sinatra-contrib/spec/multi_route_spec.rb b/sinatra-contrib/spec/multi_route_spec.rb index 64a32088..2bca15a3 100644 --- a/sinatra-contrib/spec/multi_route_spec.rb +++ b/sinatra-contrib/spec/multi_route_spec.rb @@ -20,7 +20,7 @@ describe Sinatra::MultiRoute do body.should be == 'normal' end - it 'supports multpile routes' do + it 'supports multiple routes' do get('/foo').should be_ok body.should be == 'paths' get('/bar').should be_ok @@ -31,7 +31,7 @@ describe Sinatra::MultiRoute do @count.should be == 4 end - it 'supports multpile verbs' do + it 'supports multiple verbs' do post('/').should be_ok body.should be == 'verb' put('/').should be_ok @@ -42,4 +42,4 @@ describe Sinatra::MultiRoute do get('/baz').should be_ok body.should be == 'symbol as verb' end -end \ No newline at end of file +end