summaryrefslogtreecommitdiff
path: root/ext/dl/doc
diff options
context:
space:
mode:
authorttate <ttate@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-07-30 22:55:51 +0000
committerttate <ttate@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-07-30 22:55:51 +0000
commit2a31a00fd9a0bd8f44e4931a6f7fac445a696a90 (patch)
tree6199adc894860881d763d1bc5c76ce8d2eb15581 /ext/dl/doc
parentd4b764c2cff83eb0dac0d19cfeb5092be21f1a31 (diff)
Get rid of "return".
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2675 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dl/doc')
-rw-r--r--ext/dl/doc/dl.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dl/doc/dl.txt b/ext/dl/doc/dl.txt
index 9964c4e12f..4557d6d303 100644
--- a/ext/dl/doc/dl.txt
+++ b/ext/dl/doc/dl.txt
@@ -262,6 +262,6 @@ for example:
DL.callback('IPP'){|ptr1,ptr2|
str1 = ptr1.ptr.to_s
str2 = ptr2.ptr.to_s
- return str1 <=> str2
+ str1 <=> str2
}
=end