diff options
author | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-11-13 16:12:32 +0000 |
---|---|---|
committer | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-11-13 16:12:32 +0000 |
commit | 62d385347585c0c3f73632911d57cc8b0b048261 (patch) | |
tree | 285f6f1843d005538b23898733c20baf7a0e3739 | |
parent | 647d4f5eea79671986a338bf9dd83cf706353114 (diff) |
* ext/bigdecimal/lib/bigdecimal/util.rb: [DOC] +precision+ is required
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43672 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ext/bigdecimal/lib/bigdecimal/util.rb | 1 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu Nov 14 01:11:54 2013 Zachary Scott <e@zzak.io> + + * ext/bigdecimal/lib/bigdecimal/util.rb: [DOC] +precision+ is required + Wed Nov 13 19:21:36 2013 Zachary Scott <e@zzak.io> * ext/bigdecimal/lib/bigdecimal/util.rb: [DOC] Document the required diff --git a/ext/bigdecimal/lib/bigdecimal/util.rb b/ext/bigdecimal/lib/bigdecimal/util.rb index 2781150557..a6c585d59e 100644 --- a/ext/bigdecimal/lib/bigdecimal/util.rb +++ b/ext/bigdecimal/lib/bigdecimal/util.rb @@ -104,7 +104,6 @@ end # available on Rational objects. class Rational < Numeric # call-seq: - # r.to_d -> bigdecimal # r.to_d(precision) -> bigdecimal # # Converts a Rational to a BigDecimal. |