From d4427b56adfcd7cd37842a71e9970c4caa5a2f73 Mon Sep 17 00:00:00 2001 From: Lico San Date: Mon, 12 Aug 2019 22:32:05 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd800f0..61b7e51 100644 --- a/README.md +++ b/README.md @@ -79,5 +79,5 @@ echo($f1->compute()."
\n"); //7.071... * The index of indexed arrays should be evaluated to allow formulas as indexes, but needs rewrite of current parse-compute split. ## Known bugs -* Won't allow unari operator directly binary operator like "5*-x" or "5+-x". +* Won't allow unary operator directly following a binary operator like "5*-x" or "5+-x". Your can workaround by using parenthesis like "5*(-x)" or "5+(-x)"