From 0abbe4c1e61f7010a8efc663fc420bc797572f80 Mon Sep 17 00:00:00 2001 From: ayumin Date: Fri, 9 Sep 2011 13:06:51 +0000 Subject: * ext/bigdecimal/bigdecimal.c (BigDecimal_abs): Fix comment. BigDecimal#sqrt requires argument. Reported by Makoto Kishimoto. Thanks for your contribution. [Bug #5267] [ruby-dev:44452] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33238 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ ext/bigdecimal/bigdecimal.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1b661462a7..aab88e3531 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Sep 9 21:56:40 2011 Ayumu AIZAWA + + * ext/bigdecimal/bigdecimal.c (BigDecimal_abs): Fix comment. + BigDecimal#sqrt requires argument. Reported by Makoto Kishimoto. + Thanks for your contribution. [Bug #5267] [ruby-dev:44452] + Fri Sep 9 11:00:55 2011 Shota Fukumori * test/rubygems/test_gem_commands_help_command.rb: Add one diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c index 86070af3cb..e70406a0cf 100644 --- a/ext/bigdecimal/bigdecimal.c +++ b/ext/bigdecimal/bigdecimal.c @@ -1439,7 +1439,7 @@ BigDecimal_abs(VALUE self) * * Returns the square root of the value. * - * If n is specified, returns at least that many significant digits. + * Result has at least n significant digits. */ static VALUE BigDecimal_sqrt(VALUE self, VALUE nFig) -- cgit v1.2.3