From f0221db4626bb589f230bf239a7f9df83d7e444f Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 28 Jun 2002 14:42:46 +0000 Subject: * re.c (rb_reg_expr_str): need to process backslashes properly. * object.c (rb_any_to_a): declare Object#to_a to be obsolete. * object.c (rb_Array): do not convert nil into [] automagically. * object.c (rb_Integer): use "to_int" instead of "to_i". [experimental] * object.c (nil_to_f): new method. * object.c (rb_Integer): Symbols and nil should cause error. * object.c (rb_Float): nil should cause error. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/tsort.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/tsort.rb') diff --git a/lib/tsort.rb b/lib/tsort.rb index 2c3c4b2c4e..0dd68c6b8a 100644 --- a/lib/tsort.rb +++ b/lib/tsort.rb @@ -184,7 +184,7 @@ module TSort if component.size == 1 yield component.first else - raise Cyclic.new "topological sort failed: #{component.inspect}" + raise Cyclic.new("topological sort failed: #{component.inspect}") end } end -- cgit v1.2.3