From d94edaa33f17740747178e2ae12efb4babd0bb3b Mon Sep 17 00:00:00 2001 From: Arthur Drobot Date: Fri, 11 Aug 2017 01:23:01 -0700 Subject: [PATCH] Modify sqrt comment. --- src/main/java/org/nwapw/abacus/plugin/StandardPlugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/nwapw/abacus/plugin/StandardPlugin.java b/src/main/java/org/nwapw/abacus/plugin/StandardPlugin.java index e34197b..5c268f3 100755 --- a/src/main/java/org/nwapw/abacus/plugin/StandardPlugin.java +++ b/src/main/java/org/nwapw/abacus/plugin/StandardPlugin.java @@ -655,7 +655,7 @@ public class StandardPlugin extends Plugin { "the power that e has to be brought to to be equal to the number.\n\n" + "Example: ln(2.718) -> 1", DocumentationType.FUNCTION)); registerDocumentation(new Documentation("sqrt", "Square Root", "Finds the square root " + - "of the number.", "A square root a of a number is defined such that a times a is equal " + + "of the number.", "A square root a of a number is defined as the non-negative a such that a times a is equal " + "to that number.\n\n" + "Example: sqrt(4) -> 2", DocumentationType.FUNCTION)); registerDocumentation(new Documentation("sin", "Sine", "Computes the sine of the given angle, " +