diff options
author | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-01-05 17:24:40 +0000 |
---|---|---|
committer | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-01-05 17:24:40 +0000 |
commit | 902a36c1f6157385fc8cd914f3c8824017efbfeb (patch) | |
tree | 80371d425d1e91f9fef978c8dd1e6eecd1464708 /lib/webrick/httpservlet | |
parent | 0573d5ea685e5a04b10b94ce7329d29eab2d3ea9 (diff) |
* lib/webrick/httpservlet/abstract.rb (WEBrick::HTTPServlet): Typo in
example. Patch by shlensky [Fixes #232 on github]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38709 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/webrick/httpservlet')
-rw-r--r-- | lib/webrick/httpservlet/abstract.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |