1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/bigdecimal] Correct indentation in Kernel#BigDecimal

https://github.com/ruby/bigdecimal/commit/3ede8860a6
This commit is contained in:
BurdetteLamar 2022-04-23 14:45:08 -05:00 committed by git
parent 303f81ad36
commit 06f4ca503d

View file

@ -3493,12 +3493,12 @@ rb_convert_to_BigDecimal(VALUE val, size_t digs, int raise_exception)
* BigDecimal(value, exception: true) -> bigdecimal
* BigDecimal(value, ndigits, exception: true) -> bigdecimal
*
* Returns the \BigDecimal converted from +value+
* with a precision of +ndigits+ decimal digits.
* Returns the \BigDecimal converted from +value+
* with a precision of +ndigits+ decimal digits.
*
* When +ndigits+ is less than the number of significant digits
* in the value, the result is rounded to that number of digits,
* according to the current rounding mode; see BigDecimal.mode.
* When +ndigits+ is less than the number of significant digits
* in the value, the result is rounded to that number of digits,
* according to the current rounding mode; see BigDecimal.mode.
*
* Returns +value+ converted to a \BigDecimal, depending on the type of +value+:
*