[前][次][番号順一覧][スレッド一覧]

ruby-changes:54489

From: kazu <ko1@a...>
Date: Fri, 4 Jan 2019 18:10:16 +0900 (JST)
Subject: [ruby-changes:54489] kazu:r66704 (trunk): [DOC] Fix close tags [ci skip]

kazu	2019-01-04 18:10:10 +0900 (Fri, 04 Jan 2019)

  New Revision: 66704

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=66704

  Log:
    [DOC] Fix close tags [ci skip]

  Modified files:
    trunk/lib/rdoc/parser/c.rb
    trunk/lib/rdoc/rdoc.rb
    trunk/lib/rdoc/task.rb
    trunk/lib/rexml/entity.rb
Index: lib/rexml/entity.rb
===================================================================
--- lib/rexml/entity.rb	(revision 66703)
+++ lib/rexml/entity.rb	(revision 66704)
@@ -90,7 +90,7 @@ module REXML https://github.com/ruby/ruby/blob/trunk/lib/rexml/entity.rb#L90
     # object itself is valid.)
     #
     # out::
-    #   An object implementing <TT>&lt;&lt;<TT> to which the entity will be
+    #   An object implementing <TT>&lt;&lt;</TT> to which the entity will be
     #   output
     # indent::
     #   *DEPRECATED* and ignored
Index: lib/rdoc/parser/c.rb
===================================================================
--- lib/rdoc/parser/c.rb	(revision 66703)
+++ lib/rdoc/parser/c.rb	(revision 66704)
@@ -74,11 +74,11 @@ require 'tsort' https://github.com/ruby/ruby/blob/trunk/lib/rdoc/parser/c.rb#L74
 #   Documentation for the named method.  Use this when the method name is
 #   unambiguous.
 #
-# [Document-method: <tt>ClassName::method_name<tt>]
+# [Document-method: <tt>ClassName::method_name</tt>]
 #   Documentation for a singleton method in the given class.  Use this when
 #   the method name alone is ambiguous.
 #
-# [Document-method: <tt>ClassName#method_name<tt>]
+# [Document-method: <tt>ClassName#method_name</tt>]
 #   Documentation for a instance method in the given class.  Use this when the
 #   method name alone is ambiguous.
 #
@@ -1266,4 +1266,3 @@ class RDoc::Parser::C < RDoc::Parser https://github.com/ruby/ruby/blob/trunk/lib/rdoc/parser/c.rb#L1266
   end
 
 end
-
Index: lib/rdoc/task.rb
===================================================================
--- lib/rdoc/task.rb	(revision 66703)
+++ lib/rdoc/task.rb	(revision 66704)
@@ -128,7 +128,7 @@ class RDoc::Task < Rake::TaskLib https://github.com/ruby/ruby/blob/trunk/lib/rdoc/task.rb#L128
   attr_accessor :template
 
   ##
-  # Name of format generator (<tt>--format<tt>) used by rdoc. (defaults to
+  # Name of format generator (<tt>--format</tt>) used by rdoc. (defaults to
   # rdoc's default)
 
   attr_accessor :generator
Index: lib/rdoc/rdoc.rb
===================================================================
--- lib/rdoc/rdoc.rb	(revision 66703)
+++ lib/rdoc/rdoc.rb	(revision 66704)
@@ -24,7 +24,7 @@ require 'time' https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rdoc.rb#L24
 #   rdoc.document argv
 #
 # Where +argv+ is an array of strings, each corresponding to an argument you'd
-# give rdoc on the command line.  See <tt>rdoc --help<tt> for details.
+# give rdoc on the command line.  See <tt>rdoc --help</tt> for details.
 
 class RDoc::RDoc
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]