From 09a044f9e1a12dbace174c6e83c46d0304c85d8d Mon Sep 17 00:00:00 2001 From: FelixSelter <55546882+FelixSelter@users.noreply.github.com> Date: Fri, 15 Jul 2022 15:30:33 +0200 Subject: [PATCH] Fixed a typo (#2626) --- docs/expressions/parsing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/expressions/parsing.md b/docs/expressions/parsing.md index 50fe6c73a5..df7c1149e5 100644 --- a/docs/expressions/parsing.md +++ b/docs/expressions/parsing.md @@ -92,7 +92,7 @@ math.parse([expr1, expr2, expr3, ...]) ``` Function `parse` accepts a single expression or an array with -expressions as the argument. Function `parse` returns a the root node of the tree, +expressions as the argument. Function `parse` returns the root node of the tree, which can be successively compiled and evaluated: ```js