From ce0fe87af3778f856e7f1f2085dcee909828a5c3 Mon Sep 17 00:00:00 2001 From: scottj97 Date: Wed, 20 May 2009 10:56:58 -0700 Subject: [PATCH] fix inaccurate comment in README --- README.rdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rdoc b/README.rdoc index 8dc6979f..ed266017 100644 --- a/README.rdoc +++ b/README.rdoc @@ -45,7 +45,7 @@ Route patterns may include named parameters, accessible via the params 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