From ac39391f18e53b9fce5b1d1b45d159e41f941a13 Mon Sep 17 00:00:00 2001 From: TheItsNameless Date: Sun, 26 Feb 2023 20:44:15 +0100 Subject: [PATCH] added documentation for check_valid_expression --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index af972d3..b9bf747 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,8 @@ It uses the Shunting-Yard algorithm and follows the correct order of operation r If you provide an empty string as the input, a `ValueError` will be raised. +The function `StringMath.check_valid_expression()` can be used to check whether a string is valid and can be processed. If the string is valid, the function will return `True`. + ### WordMath ```py