* 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
This commit is contained in:
hsbt 2014-01-19 05:43:26 +00:00
parent d1ab866d4a
commit 690be750cb
10 changed files with 11 additions and 11 deletions

View File

@ -865,7 +865,7 @@ class CGI
%|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">|
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

View File

@ -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

View File

@ -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

View File

@ -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::

View File

@ -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

View File

@ -13,7 +13,7 @@ module REXML
def tag_start name, attrs
end
# Called when the end tag is reached. In the case of <tag/>, 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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -90,7 +90,7 @@ module URI
# u = p.parse("http://example.jp/%uABCD") #=> #<URI::HTTP:0xb78cf4f8 URL: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) #=> #<URI::HTTP:0xb78c3220 URL:http://example.com/ABCD>
# u2 = URI.parse(s) #=> #<URI::HTTP:0xb78b6d54 URL:http://example.com/ABCD>
# u1 == u2 #=> true