From e98825376208fc8b7944b6da53d759a5bc71d399 Mon Sep 17 00:00:00 2001 From: shigek Date: Sat, 16 Aug 2003 13:36:40 +0000 Subject: Typo 'selt' corrected to 'self'. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/bigdecimal/lib/bigdecimal/util.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/bigdecimal/lib/bigdecimal/util.rb b/ext/bigdecimal/lib/bigdecimal/util.rb index 90b0cbd0b..1f8d6c7a4 100644 --- a/ext/bigdecimal/lib/bigdecimal/util.rb +++ b/ext/bigdecimal/lib/bigdecimal/util.rb @@ -19,13 +19,13 @@ # class Float < Numeric def to_d - BigDecimal::new(selt.to_s) + BigDecimal(self.to_s) end end class String def to_d - BigDecimal::new(self) + BigDecimal(self) end end -- cgit