diff options
author | Burdette Lamar <[email protected]> | 2024-09-02 10:36:49 -0500 |
---|---|---|
committer | git <[email protected]> | 2024-09-02 15:36:53 +0000 |
commit | b539b43b2b25529e679401091836ac7de4df3beb (patch) | |
tree | 6842bf44955cf4d8f12bdd3d43c3abdfbec17ea7 | |
parent | fe2db1bed9effe7ae18a39e3068ce7d957cc894c (diff) |
[ruby/rdoc] [DOC] Fix links (https://github.com/ruby/rdoc/pull/1169)
https://github.com/ruby/rdoc/commit/a576ff890f
-rw-r--r-- | doc/rdoc/markup_reference.rb | 4 | ||||
-rw-r--r-- | lib/rdoc.rb | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/doc/rdoc/markup_reference.rb b/doc/rdoc/markup_reference.rb index d1901b86e2..bb2dc67eca 100644 --- a/doc/rdoc/markup_reference.rb +++ b/doc/rdoc/markup_reference.rb @@ -918,10 +918,6 @@ require 'rdoc' # # - Linked: <tt>https://github.com</tt> links to https://github.com. # -# [Protocol +www+] -# -# - Linked: <tt>www.yahoo.com</tt> links to www.yahoo.com. -# # [Protocol +ftp+] # # - Linked: <tt>ftp://nosuch.site</tt> links to ftp://nosuch.site. diff --git a/lib/rdoc.rb b/lib/rdoc.rb index 209042ed0e..3821569f45 100644 --- a/lib/rdoc.rb +++ b/lib/rdoc.rb @@ -21,7 +21,7 @@ $DEBUG_RDOC = nil # see RDoc::Markup and refer to <tt>rdoc --help</tt> for command line usage. # # If you want to set the default markup format see -# RDoc::Markup@Supported+Formats +# RDoc::Markup@Markup+Formats # # If you want to store rdoc configuration in your gem (such as the default # markup format) see RDoc::Options@Saved+Options |