diff --git a/lib/rackup/server.rb b/lib/rackup/server.rb index cb132f7..3304b87 100644 --- a/lib/rackup/server.rb +++ b/lib/rackup/server.rb @@ -170,14 +170,14 @@ def handler_opts(options) # This method can be used to very easily launch a CGI application, for # example: # - # Rack::Server.start( + # Rackup::Server.start( # :app => lambda do |e| # [200, {'content-type' => 'text/html'}, ['hello world']] # end, # :server => 'cgi' # ) # - # Further options available here are documented on Rack::Server#initialize + # Further options available here are documented on Rackup::Server#initialize def self.start(options = nil) new(options).start end