From 690be750cbf107446438249a868e081e3ee3ff09 Mon Sep 17 00:00:00 2001 From: hsbt Date: Sun, 19 Jan 2014 05:43:26 +0000 Subject: * lib/cgi/html.rb: fix typo by @windwiny [fix GH-506] * lib/net/http.rb: ditto * lib/rexml/attribute.rb: ditto * lib/rexml/element.rb: ditto * lib/rexml/source.rb: ditto * lib/rexml/streamlistener.rb: ditto * lib/rss/xmlparser.rb: ditto * lib/rubygems/commands/generate_index_command.rb: ditto * lib/shell.rb: ditto * lib/uri/common.rb:ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44650 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/cgi/html.rb | 2 +- lib/net/http.rb | 4 ++-- lib/rexml/attribute.rb | 2 +- lib/rexml/element.rb | 2 +- lib/rexml/source.rb | 2 +- lib/rexml/streamlistener.rb | 2 +- lib/rss/xmlparser.rb | 2 +- lib/rubygems/commands/generate_index_command.rb | 2 +- lib/shell.rb | 2 +- lib/uri/common.rb | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/cgi/html.rb b/lib/cgi/html.rb index 4c4f698a2b..db47bb8266 100644 --- a/lib/cgi/html.rb +++ b/lib/cgi/html.rb @@ -865,7 +865,7 @@ class CGI %|| end - # Initialise the HTML generation methods for this version. + # Initialize the HTML generation methods for this version. # - - instance_method(:nn_element_def).tap do |m| for element in %w[ TT I B BIG SMALL EM STRONG DFN CODE SAMP KBD diff --git a/lib/net/http.rb b/lib/net/http.rb index a1b8d691bb..6d6a24fb86 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -687,10 +687,10 @@ module Net #:nodoc: # The port number to connect to. attr_reader :port - # The local host used to estabilish the connection. + # The local host used to establish the connection. attr_accessor :local_host - # The local port used to estabilish the connection. + # The local port used to establish the connection. attr_accessor :local_port attr_writer :proxy_from_env diff --git a/lib/rexml/attribute.rb b/lib/rexml/attribute.rb index 803d0217b1..ef9e544294 100644 --- a/lib/rexml/attribute.rb +++ b/lib/rexml/attribute.rb @@ -159,7 +159,7 @@ module REXML self end - # Removes this Attribute from the tree, and returns true if successfull + # Removes this Attribute from the tree, and returns true if successful # # This method is usually not called directly. def remove diff --git a/lib/rexml/element.rb b/lib/rexml/element.rb index c30b150c0b..94b00d7284 100644 --- a/lib/rexml/element.rb +++ b/lib/rexml/element.rb @@ -206,7 +206,7 @@ module REXML return namespaces end - # Evalutas to the URI for a prefix, or the empty string if no such + # Evaluates to the URI for a prefix, or the empty string if no such # namespace is declared for this element. Evaluates recursively for # ancestors. Returns the default namespace, if there is one. # prefix:: diff --git a/lib/rexml/source.rb b/lib/rexml/source.rb index b653714b2f..a0bbe25de7 100644 --- a/lib/rexml/source.rb +++ b/lib/rexml/source.rb @@ -62,7 +62,7 @@ module REXML # requirements; for another, the source can be consumed. You can easily # confuse this method. Originally, the patterns were easier # to construct and this method more robust, because this method - # generated search regexes on the fly; however, this was + # generated search regexps on the fly; however, this was # computationally expensive and slowed down the entire REXML package # considerably, since this is by far the most commonly called method. # @param pattern must be a Regexp, and must be in the form of diff --git a/lib/rexml/streamlistener.rb b/lib/rexml/streamlistener.rb index 8805ffba4d..3a0528c102 100644 --- a/lib/rexml/streamlistener.rb +++ b/lib/rexml/streamlistener.rb @@ -13,7 +13,7 @@ module REXML def tag_start name, attrs end # Called when the end tag is reached. In the case of , tag_end - # will be called immidiately after tag_start + # will be called immediately after tag_start # @p the name of the tag def tag_end name end diff --git a/lib/rss/xmlparser.rb b/lib/rss/xmlparser.rb index 6af157a2f2..46df94a320 100644 --- a/lib/rss/xmlparser.rb +++ b/lib/rss/xmlparser.rb @@ -20,7 +20,7 @@ end module XML class Parser unless defined?(Error) - # This erorr is legacy, so we just set it to the new one + # This error is legacy, so we just set it to the new one Error = ::XMLParserError # :nodoc: end end diff --git a/lib/rubygems/commands/generate_index_command.rb b/lib/rubygems/commands/generate_index_command.rb index a7db013caf..ca6f694bc5 100644 --- a/lib/rubygems/commands/generate_index_command.rb +++ b/lib/rubygems/commands/generate_index_command.rb @@ -62,7 +62,7 @@ Marshal::MINOR_VERSION constants. It is used to ensure compatibility. end def execute - # This is always true becasue it's the only way now. + # This is always true because it's the only way now. options[:build_modern] = true if not File.exist?(options[:directory]) or diff --git a/lib/shell.rb b/lib/shell.rb index 76af3b6f86..928073e144 100644 --- a/lib/shell.rb +++ b/lib/shell.rb @@ -37,7 +37,7 @@ require "shell/process-controller" # sh.cd("shell-test-1") # Change to the /tmp/shell-test-1 directory # for dir in ["dir1", "dir3", "dir5"] # if !sh.exists?(dir) -# sh.mkdir dir # make dir if it doesnt' already exist +# sh.mkdir dir # make dir if it doesn't already exist # sh.cd(dir) do # # change to the `dir` directory # f = sh.open("tmpFile", "w") # open a new file in write mode diff --git a/lib/uri/common.rb b/lib/uri/common.rb index e1bc3582c7..c8829cca37 100644 --- a/lib/uri/common.rb +++ b/lib/uri/common.rb @@ -90,7 +90,7 @@ module URI # u = p.parse("http://example.jp/%uABCD") #=> # # URI.parse(u.to_s) #=> raises URI::InvalidURIError # - # s = "http://examle.com/ABCD" + # s = "http://example.com/ABCD" # u1 = p.parse(s) #=> # # u2 = URI.parse(s) #=> # # u1 == u2 #=> true -- cgit v1.2.3