Skip to content

Commit fe53dc1

Browse files
authored
Merge pull request #532 from tnir/fix-brokn-links
Fix broken links
2 parents 5beb20d + 48b14ac commit fe53dc1

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

CONTRIBUTING.rdoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ classes for each feature.
88
== Bugs
99

1010
If you think you found a bug, file a ticket on the {issues
11-
tracker}[https://github.com/rdoc/rdoc/issues] on github.
11+
tracker}[https://github.com/ruby/rdoc/issues] on github.
1212

1313
If your bug involves an error RDoc produced please include a sample file that
1414
illustrates the problem or link to the repository or gem that is associated
@@ -17,8 +17,8 @@ with the bug.
1717
Please include steps to reproduce the issue. Here are some examples of good
1818
issues:
1919

20-
* https://github.com/rdoc/rdoc/issues/55
21-
* https://github.com/rdoc/rdoc/issues/61
20+
* https://github.com/ruby/rdoc/issues/55
21+
* https://github.com/ruby/rdoc/issues/61
2222

2323
== Developer Quick Start
2424

@@ -35,7 +35,7 @@ This will install all the necessary dependencies for development with rake,
3535
generate documentation and run the tests for the first time.
3636

3737
If the tests don't pass on the first run check the {Travis CI page for
38-
RDoc}[https://travis-ci.org/rdoc/rdoc] to see if there are any known failures
38+
RDoc}[https://travis-ci.org/ruby/rdoc] to see if there are any known failures
3939
(there shouldn't be).
4040

4141
You can now use `rake` and `autotest` to run the tests.

README.rdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ contain just Markup-style markup (with or without leading '#' comment
4747
markers). If directory names are passed to RDoc, they are scanned
4848
recursively for C and Ruby source files only.
4949

50-
To generate documentation using +rake+ see RDoc::Task[https://rdoc.github.io/rdoc/RDocTask.html].
50+
To generate documentation using +rake+ see RDoc::Task[https://ruby.github.io/rdoc/RDocTask.html].
5151

5252
To generate documentation programmatically:
5353

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<footer id="validator-badges" role="contentinfo">
2-
<p><a href="http://validator.w3.org/check/referer">Validate</a>
3-
<p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> <%= RDoc::VERSION %>.
2+
<p><a href="https://validator.w3.org/check/referer">Validate</a>
3+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> <%= RDoc::VERSION %>.
44
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
55
</footer>

lib/rdoc/markup.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@
377377
#
378378
# Example links:
379379
#
380-
# https://github.com/rdoc/rdoc
380+
# https://github.com/ruby/rdoc
381381
382382
# {RDoc Documentation}[http://rdoc.rubyforge.org]
383383
# {RDoc Markup}[rdoc-ref:RDoc::Markup]
@@ -764,7 +764,7 @@ def self.parse str
764764
765765
Please file a bug report with the above information at:
766766
767-
https://github.com/rdoc/rdoc/issues
767+
https://github.com/ruby/rdoc/issues
768768
769769
EOF
770770
raise

lib/rdoc/servlet.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def error exception, req, res
217217
<pre>#{ERB::Util.html_escape exception.message}</pre>
218218
219219
<p>Please report this to the
220-
<a href="https://github.com/rdoc/rdoc/issues">RDoc issues tracker</a>. Please
220+
<a href="https://github.com/ruby/rdoc/issues">RDoc issues tracker</a>. Please
221221
include the RDoc version, the URI above and exception class, message and
222222
backtrace. If you're viewing a gem's documentation, include the gem name and
223223
version. If you're viewing Ruby's documentation, include the version of ruby.

test/test_rdoc_markup_to_html_snippet.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -494,9 +494,9 @@ def test_convert_limit_paragraphs
494494
rdoc = <<-RDOC
495495
= \RDoc - Ruby Documentation System
496496
497-
* {RDoc Project Page}[https://github.com/rdoc/rdoc/]
498-
* {RDoc Documentation}[https://rdoc.github.io/rdoc]
499-
* {RDoc Bug Tracker}[https://github.com/rdoc/rdoc/issues]
497+
* {RDoc Project Page}[https://github.com/ruby/rdoc]
498+
* {RDoc Documentation}[https://ruby.github.io/rdoc]
499+
* {RDoc Bug Tracker}[https://github.com/ruby/rdoc/issues]
500500
501501
== DESCRIPTION:
502502

0 commit comments

Comments
 (0)