ruby-changes:31824
From: a_matsuda <ko1@a...>
Date: Thu, 28 Nov 2013 23:36:14 +0900 (JST)
Subject: [ruby-changes:31824] a_matsuda:r43903 (trunk): * lib/gserver.rb: [DOC] Fix typo
a_matsuda 2013-11-28 23:36:07 +0900 (Thu, 28 Nov 2013) New Revision: 43903 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=43903 Log: * lib/gserver.rb: [DOC] Fix typo s/FixNum/Fixnum/ Modified files: trunk/lib/gserver.rb Index: lib/gserver.rb =================================================================== --- lib/gserver.rb (revision 43902) +++ lib/gserver.rb (revision 43903) @@ -92,7 +92,7 @@ class GServer https://github.com/ruby/ruby/blob/trunk/lib/gserver.rb#L92 # Stop the server running on the given port, bound to the given host # - # +port+:: port, as a FixNum, of the server to stop + # +port+:: port, as a Fixnum, of the server to stop # +host+:: host on which to find the server to stop def GServer.stop(port, host = DEFAULT_HOST) @@servicesMutex.synchronize { @@ -102,7 +102,7 @@ class GServer https://github.com/ruby/ruby/blob/trunk/lib/gserver.rb#L102 # Check if a server is running on the given port and host # - # +port+:: port, as a FixNum, of the server to check + # +port+:: port, as a Fixnum, of the server to check # +host+:: host on which to find the server to check # # Returns true if a server is running on that port and host. @@ -140,11 +140,11 @@ class GServer https://github.com/ruby/ruby/blob/trunk/lib/gserver.rb#L140 @tcpServerThread.join if @tcpServerThread end - # Port on which to listen, as a FixNum + # Port on which to listen, as a Fixnum attr_reader :port # Host on which to bind, as a String attr_reader :host - # Maximum number of connections to accept at at ime, as a FixNum + # Maximum number of connections to accept at at ime, as a Fixnum attr_reader :maxConnections # IO Device on which log messages should be written attr_accessor :stdlog @@ -212,7 +212,7 @@ class GServer https://github.com/ruby/ruby/blob/trunk/lib/gserver.rb#L212 # Create a new server # - # +port+:: the port, as a FixNum, on which to listen. + # +port+:: the port, as a Fixnum, on which to listen. # +host+:: the host to bind to # +maxConnections+:: The maximum number of simultaneous connections to # accept -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/