remove unnecessary parens from example

This commit is contained in:
Konstantin Haase 2011-10-14 14:04:04 -07:00
parent 2a9e7b60df
commit b95764bec0
1 changed files with 1 additions and 1 deletions

View File

@ -885,7 +885,7 @@ default, so if you inherit from <tt>Sinatra::Base</tt>, you probably want to
enable it yourself:
class MyApp < Sinatra::Base
configure(:production, :development) do
configure :production, :development do
enable :logging
end
end