summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2017-01-08 17:24:08 (EST)
committer P. J. McDermott <pj@pehjota.net>2017-01-08 17:24:08 (EST)
commitb76871a4c5bd5f8553c3292e194f74276d15672b (patch)
treea25ffd276ca6e0e262b1a865f5d681c0d6fe3c11 /lib
parent6b8f05ec40028d267780bdc15b5f658de3e1c183 (diff)
downloadMath-Decimal-FastPP-b76871a4c5bd5f8553c3292e194f74276d15672b.zip
Math-Decimal-FastPP-b76871a4c5bd5f8553c3292e194f74276d15672b.tar.gz
Math-Decimal-FastPP-b76871a4c5bd5f8553c3292e194f74276d15672b.tar.bz2
lib/Math/Decimal/FastPP.pm, README: s/arithmetic/math/ or add "and rounding"
Diffstat (limited to 'lib')
-rw-r--r--lib/Math/Decimal/FastPP.pm16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/Math/Decimal/FastPP.pm b/lib/Math/Decimal/FastPP.pm
index d140132..c00a16a 100644
--- a/lib/Math/Decimal/FastPP.pm
+++ b/lib/Math/Decimal/FastPP.pm
@@ -1,6 +1,6 @@
=head1 NAME
-Math::Decimal::FastPP - Fast pure-Perl decimal arithmetic
+Math::Decimal::FastPP - Fast pure-Perl decimal math
=head1 SYNOPSIS
@@ -12,14 +12,14 @@ Math::Decimal::FastPP - Fast pure-Perl decimal arithmetic
=head1 DESCRIPTION
-Math::Decimal::FastPP provides a few common decimal arithmetic functions written
-in pure Perl. The functions are of course slower than Perl's built-in binary
-floating-point arithmetic, but they're faster than L<Math::BigFloat> and other
-commonly used decimal arithmetic modules.
+Math::Decimal::FastPP provides a few common decimal arithmetic and rounding
+functions written in pure Perl. The functions are of course slower than Perl's
+built-in binary floating-point math, but they're faster than L<Math::BigFloat>
+and other commonly used decimal math modules.
-This module is currently less complete than Perl's built-in arithmetic and other
-decimal arithmetic modules. So far it only includes addition, multiplication,
-and rounding functions.
+This module is currently less complete than Perl's built-in math and other
+decimal math modules. So far it only includes addition, multiplication, and two
+rounding functions.
Despite the similar name and purpose, this module is not compatible with
L<Math::Decimal>.