From be227c54827cdc75d1ee990dcca8b033e7e46aef Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 30 Jun 2005 06:20:09 +0000 Subject: * eval.c (rb_eval): pre-evaluate argument for unambiguous evaluation order. [ruby-dev:26383] * lib/delegate.rb (Delegator::method_missing): forward unknown method to the destination. suggested by . [ruby-talk:146776] * process.c (detach_process_watcher): terminate process watcher thread right after rb_waitpid() succeed. [ruby-talk:146430] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8676 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/set.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/set.rb') diff --git a/lib/set.rb b/lib/set.rb index 586a5d9f4..0ad47c842 100644 --- a/lib/set.rb +++ b/lib/set.rb @@ -519,6 +519,7 @@ end module Enumerable # Makes a set from the enumerable object with given arguments. + # Needs to +require "set"+ to use this method. def to_set(klass = Set, *args, &block) klass.new(self, *args, &block) end -- cgit