public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Search Repo:
fix minor typos in server.rb
kevwil (author)
Tue Jan 22 20:26:33 -0800 2008
commit  196baef3d62a92c1311ea32f267dce3c253e488c
tree    96306b5891f2f1c274c117c4617a55860eb2ed5b
parent  57eceafee8354b99f06a6bcb29bceb02e863fc9e
...
12
13
14
15
 
16
17
18
 
19
20
21
22
23
24
 
25
26
27
...
12
13
14
 
15
16
17
 
18
19
20
21
22
23
 
24
25
26
27
0
@@ -12,16 +12,16 @@
0
     include Logging
0
     include Daemonizable
0
     
0
- # Addresse and port on which the server is listening for connections.
0
+ # Address and port on which the server is listening for connections.
0
     attr_accessor :port, :host
0
     
0
- # App called with the request that produce the response.
0
+ # App called with the request that produces the response.
0
     attr_accessor :app
0
     
0
     # Maximum time for incoming data to arrive
0
     attr_accessor :timeout
0
     
0
- # Creates a new server binded to <tt>host:port</tt>
0
+ # Creates a new server bound to <tt>host:port</tt>
0
     # that will pass request to +app+.
0
     # If a block is passed, a <tt>Rack::Builder</tt> instance
0
     # will be passed to build the +app+.

Comments

    No one has commented yet.