summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2017-01-08 17:15:17 (EST)
committer P. J. McDermott <pj@pehjota.net>2017-01-08 17:15:17 (EST)
commit8674685a981bc434e86f3673fe40515e18311491 (patch)
tree07e29979224fcc9c92168c1b2fd5821e900af843
parentd95622f14efe87b095318833bd2366e8190c493c (diff)
downloaddecmath.js-8674685a981bc434e86f3673fe40515e18311491.zip
decmath.js-8674685a981bc434e86f3673fe40515e18311491.tar.gz
decmath.js-8674685a981bc434e86f3673fe40515e18311491.tar.bz2
README: s/arithmetic/math/ or add "and rounding"
-rw-r--r--README12
1 files changed, 6 insertions, 6 deletions
diff --git a/README b/README
index 5d1f2a7..730a7a6 100644
--- a/README
+++ b/README
@@ -1,14 +1,14 @@
decmath.js
==========
-decmath.js provides a few common decimal arithmetic functions. The
-functions are of course slower than JavaScript's built-in binary
-floating-point arithmetic, but the code is smaller and probably faster
-than other commonly used decimal arithmetic libraries.
+decmath.js provides a few common decimal arithmetic and rounding
+functions. The functions are of course slower than JavaScript's
+built-in binary floating-point math, but the code is smaller and
+probably faster than other commonly used decimal math libraries.
This library is currently less complete than JavaScript's built-in
-arithmetic and other decimal arithmetic libraries. So far it only
-includes addition, multiplication, and rounding functions.
+math and other decimal math libraries. So far it only includes
+addition, multiplication, and two rounding functions.
This library is a JavaScript port of the Math::Decimal::FastPP Perl
module, also written by Patrick McDermott.