diff --git a/README.rdoc b/README.rdoc index 06155d04..1c4f273f 100644 --- a/README.rdoc +++ b/README.rdoc @@ -203,7 +203,6 @@ and overridden on an individual basis. sass :stylesheet, :style => :expanded # overridden end - === Inline Templates get '/' do @@ -346,11 +345,11 @@ A route can punt processing to the next matching route using pass: get '/guess/:who' do pass unless params[:who] == 'Frank' - "You got me!" + 'You got me!' end get '/guess/*' do - "You missed!" + 'You missed!' end The route block is immediately exited and control continues with the next