From 32df87feabb8b2b99fc47e64896b2c922dca6451 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@4395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/bigdecimal/lib/bigdecimal/util.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/bigdecimal/lib/bigdecimal/util.rb') diff --git a/ext/bigdecimal/lib/bigdecimal/util.rb b/ext/bigdecimal/lib/bigdecimal/util.rb index 90b0cbd0b8..1f8d6c7a49 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 v1.2.3