Skip to content

Commit c6cdd47

Browse files
jmbejarioquatix
authored andcommitted
Fix references from Rack::Server to Rackup::Server in comments
It is likely a left-over from extracting out `Rack::Server` to a dedicate gem, so fixing comments in this trivial PR.
1 parent e3df7cb commit c6cdd47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/rackup/server.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,14 +170,14 @@ def handler_opts(options)
170170
# This method can be used to very easily launch a CGI application, for
171171
# example:
172172
#
173-
# Rack::Server.start(
173+
# Rackup::Server.start(
174174
# :app => lambda do |e|
175175
# [200, {'content-type' => 'text/html'}, ['hello world']]
176176
# end,
177177
# :server => 'cgi'
178178
# )
179179
#
180-
# Further options available here are documented on Rack::Server#initialize
180+
# Further options available here are documented on Rackup::Server#initialize
181181
def self.start(options = nil)
182182
new(options).start
183183
end

0 commit comments

Comments
 (0)