From 262561ca7807bcf0e070568710be3f0da8b67f0b Mon Sep 17 00:00:00 2001 From: kalebo Date: Sat, 25 Feb 2017 16:48:24 -0700 Subject: [PATCH] Changing wording in scale example * 'decimal places' used instead of 'precision' * Implicit example of using scale --- pages/common/bc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/bc.md b/pages/common/bc.md index d8520c22da..96758a0ba8 100644 --- a/pages/common/bc.md +++ b/pages/common/bc.md @@ -10,7 +10,7 @@ `bc <<< "(1 + 2) * 2 ^ 2"` -- Calculate with the given precision: +- Calculate expression and force number of decimal places to 10: `bc <<< "scale=10; 5 / 3"`