summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2015-12-22 22:42:44 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2015-12-30 22:22:32 +0000
commit41a02723e6ddb810978c33a9f67ff2490112f2cc (patch)
treebfeb7e924d4dba2d41fb2022c623a12cac7e9a9d
parentcacb36bedb09cbc1f20d1132020f43972f3cdc47 (diff)
downloadswig-41a02723e6ddb810978c33a9f67ff2490112f2cc.tar.gz
Remove broken link in docs
-rw-r--r--Doc/Manual/Ruby.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/Manual/Ruby.html b/Doc/Manual/Ruby.html
index 4663b4c95..cac123fe4 100644
--- a/Doc/Manual/Ruby.html
+++ b/Doc/Manual/Ruby.html
@@ -4636,8 +4636,7 @@ objects that have already been marked). Those objects, in turn, may
reference other objects. This process will continue until all active
objects have been "marked." After the mark phase comes the sweep phase.
In the sweep phase, all objects that have not been marked will be
-garbage collected. For more information about the Ruby garbage
-collector please refer to <a href="http://rubygarden.org/ruby/ruby?GCAndExtensions"> <span style="text-decoration: underline;">http://rubygarden.org/ruby/ruby?GCAndExtensions</span></a>.</p>
+garbage collected. </p>
<p>The Ruby C/API provides extension developers two hooks into
the garbage collector - a "mark" function and a "sweep" function. By