summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorgsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-19 01:51:17 +0000
committergsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-19 01:51:17 +0000
commit50cd24f1cf4c859b8a602f1cf44baf636b775326 (patch)
tree946a57deaf7ec76a60f66fbd443659ee1a86b2bf /lib
parentdf7c89b442a2e8853f44b47f98fda1b1c531c3a7 (diff)
Small documentation correction
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/set.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/set.rb b/lib/set.rb
index 935c07c3e0..222dee1493 100644
--- a/lib/set.rb
+++ b/lib/set.rb
@@ -188,7 +188,7 @@ class Set
end
alias << add
- # Adds the given object to the set and returns self. If it the
+ # Adds the given object to the set and returns self. If the
# object is already in the set, returns nil.
def add?(o)
if include?(o)