fix inaccurate comment in README

This commit is contained in:
scottj97 2009-05-20 10:56:58 -07:00 committed by Ryan Tomayko
parent 6d76fb6104
commit ce0fe87af3
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ Route patterns may include named parameters, accessible via the
<tt>params</tt> hash:
get '/hello/:name' do
# matches "GET /foo" and "GET /bar"
# matches "GET /hello/foo" and "GET /hello/bar"
# params[:name] is 'foo' or 'bar'
"Hello #{params[:name]}!"
end