diff options
author | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-26 23:45:41 +0000 |
---|---|---|
committer | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-26 23:45:41 +0000 |
commit | 80d6bf2291380b5860b2fa588404d7721bf34c30 (patch) | |
tree | 659881eb92a36b5c3bf3d48797931ecdd2bfcebd /lib/rdoc/markup.rb | |
parent | 164c7dc57445c43a559dfcb39a48614ea23f067a (diff) |
* lib/rdoc: Import RDoc 3.9.4. Typo and grammar fixes by Luke Gruber.
[Ruby 1.9 - Bug #5203]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33088 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/markup.rb')
-rw-r--r-- | lib/rdoc/markup.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/rdoc/markup.rb b/lib/rdoc/markup.rb index 616d6e34f3..07fd5493c8 100644 --- a/lib/rdoc/markup.rb +++ b/lib/rdoc/markup.rb @@ -36,7 +36,7 @@ require 'rdoc' # sequences, and to add special processing for text that matches a # regular expression. Here we make WikiWords significant to the parser, # and also make the sequences {word} and \<no>text...</no> signify -# strike-through text. When then subclass the HTML output class to deal +# strike-through text. We then subclass the HTML output class to deal # with these: # # require 'rdoc/markup' @@ -61,7 +61,7 @@ require 'rdoc' # # == Encoding # -# Where Encoding support is available RDoc will automatically convert all +# Where Encoding support is available, RDoc will automatically convert all # documents to the same output encoding. The output encoding can be set via # RDoc::Options#encoding and defaults to Encoding.default_external. # @@ -127,7 +127,7 @@ require 'rdoc' # === Simple Lists # # If a paragraph starts with a "*", "-", "<digit>." or "<letter>.", -# then it is taken to be the start of a list. The margin in increased to be +# then it is taken to be the start of a list. The margin is increased to be # the first non-space following the list start flag. Subsequent lines # should be indented to this new margin until the list ends. For example: # @@ -444,10 +444,10 @@ require 'rdoc' # # [+:nodoc:+ / <tt>:nodoc: all</tt>] # This directive prevents documentation for the element from -# being generated. For classes and modules, the methods, aliases, +# being generated. For classes and modules, methods, aliases, # constants, and attributes directly within the affected class or # module also will be omitted. By default, though, modules and -# classes within that class of module _will_ be documented. This is +# classes within that class or module _will_ be documented. This is # turned off by adding the +all+ modifier. # # module MyModule # :nodoc: @@ -591,7 +591,7 @@ class RDoc::Markup attr_reader :attribute_manager ## - # Take a block of text and use various heuristics to determine it's + # Take a block of text and use various heuristics to determine its # structure (paragraphs, lists, and so on). Invoke an event handler as we # identify significant chunks. |