Skip to content

Commit

Permalink
- Docfix
Browse files Browse the repository at this point in the history
- see Perl#9
  • Loading branch information
Sadrak committed Mar 7, 2017
1 parent 2967a67 commit 5f32f12
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Format.pm
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ sub abs_ceil

##----------------------------------------------------------------------

=item format_number($number, $precision, $trailing_zeroes)
=item format_number($number, $precision, $trailing_zeroes, $mon, $roundoption)
Formats a number by adding C<THOUSANDS_SEP> between each set of 3
digits to the left of the decimal point, substituting C<DECIMAL_POINT>
Expand All @@ -705,7 +705,9 @@ specifier; trailing zeroes will only appear in the output if
C<$trailing_zeroes> is provided, or the parameter C<DECIMAL_FILL> is
set, with a value that is true (not zero, undef, or the empty string).
If C<$precision> is omitted, the value of the C<DECIMAL_DIGITS>
parameter (default value of 2) is used.
parameter (default value of 2) is used. If C<$mon> is true (default
value false) the monetary separators are used. C<$precision> and
C<$roundoption> are direct passed to C<round()>.
If the value is too large or great to work with as a regular number,
but instead must be shown in scientific notation, returns that number
Expand Down

0 comments on commit 5f32f12

Please sign in to comment.