diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/webrick/httpservlet/abstract.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sun Jan 6 02:22:00 2013 Zachary Scott <[email protected]> + + * lib/webrick/httpservlet/abstract.rb (WEBrick::HTTPServlet): Typo in + example. Patch by shlensky [Fixes #232 on github] + Sat Jan 5 21:15:10 2013 NARUSE, Yui <[email protected]> * lib/net/http/generic_request.rb: diff --git a/lib/webrick/httpservlet/abstract.rb b/lib/webrick/httpservlet/abstract.rb index 0d5c5ae48d..d3b00ab4e1 100644 --- a/lib/webrick/httpservlet/abstract.rb +++ b/lib/webrick/httpservlet/abstract.rb @@ -54,7 +54,7 @@ module WEBrick # Servlets can be configured via initialize. The first argument is the # HTTP server the servlet is being initialized for. # - # class Configureable < Simple + # class Configurable < Simple # def initialize server, color, size # super server # @color = color |