summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-13 21:18:29 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-13 21:18:29 +0000
commit3d81b5c848c3cf01188d3d44885f78f09a4cfd08 (patch)
tree5c366c8c7b5b32da46499f4949cbe5a7c6a07c20 /lib
parentb41bc68688f098fce75ea4e7296e3e11783a7b97 (diff)
* lib/observer.rb: Update broken link to the Programming Ruby book.
Patch by Zachary Scott. [ruby-trunk - Bug #6536] * lib/drb/drb.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36074 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/drb/drb.rb2
-rw-r--r--lib/observer.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb
index 69456b1db2..217b5963ec 100644
--- a/lib/drb/drb.rb
+++ b/lib/drb/drb.rb
@@ -44,7 +44,7 @@
# [http://www.eng.cse.dmu.ac.uk/~hgs/ruby/dRuby/]
# Links to English-language Ruby material collected by Hugh Sasse.
#
-# [http://www.rubycentral.com/book/ospace.html]
+# [http://www.ruby-doc.org/docs/ProgrammingRuby/html/ospace.html]
# The chapter from *Programming* *Ruby* by Dave Thomas and Andy Hunt
# which discusses dRuby.
#
diff --git a/lib/observer.rb b/lib/observer.rb
index a5d0dc0f4e..688b1f556b 100644
--- a/lib/observer.rb
+++ b/lib/observer.rb
@@ -1,7 +1,7 @@
#
# Implementation of the _Observer_ object-oriented design pattern. The
# following documentation is copied, with modifications, from "Programming
-# Ruby", by Hunt and Thomas; http://www.rubycentral.com/book/lib_patterns.html.
+# Ruby", by Hunt and Thomas; http://www.ruby-doc.org/docs/ProgrammingRuby/html/lib_patterns.html.
#
# See Observable for more info.