diff options
author | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-01-21 15:09:12 +0000 |
---|---|---|
committer | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-01-21 15:09:12 +0000 |
commit | 8c803e3fd5a362a2d21c95fdd82991ecaab22f2a (patch) | |
tree | 6d7574d2eb578eaa658d7444adaad6e62f249ddc | |
parent | db66da9c4e7d167a1f20088c8b97aac3c35cd215 (diff) | |
download | ruby-8c803e3fd5a362a2d21c95fdd82991ecaab22f2a.tar.gz ruby-8c803e3fd5a362a2d21c95fdd82991ecaab22f2a.tar.xz ruby-8c803e3fd5a362a2d21c95fdd82991ecaab22f2a.zip |
Very slight improvement to documentation.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3389 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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 1fc14e7db..c2792dedb 100644 --- a/lib/set.rb +++ b/lib/set.rb @@ -100,7 +100,7 @@ class Set self end - # Converts the set to an array. (the order is uncertain) + # Converts the set to an array. The order of elements is uncertain. def to_a @hash.keys end |