diff options
author | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-19 01:51:17 +0000 |
---|---|---|
committer | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-19 01:51:17 +0000 |
commit | 9fb55fa783bf276e3eebaf04d99ef77902d50e0e (patch) | |
tree | 946a57deaf7ec76a60f66fbd443659ee1a86b2bf /lib | |
parent | 44b4e13bf2482a2577942e67d5a13e70928118a4 (diff) | |
download | ruby-9fb55fa783bf276e3eebaf04d99ef77902d50e0e.tar.gz ruby-9fb55fa783bf276e3eebaf04d99ef77902d50e0e.tar.xz ruby-9fb55fa783bf276e3eebaf04d99ef77902d50e0e.zip |
Small documentation correction
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/set.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/set.rb b/lib/set.rb index 935c07c3e..222dee149 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) |