From e544c4d35c82d97b9ed24b293ae0f41ea9718997 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 16 Feb 2022 14:52:11 -0500 Subject: [PATCH] remove recommendations --- src/lib.rs | 3 +-- www/index.html | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 52fab86..c7c8c4a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -83,8 +83,7 @@ impl ChartManager { // Recommends a possible solution to an error from method `test_func` pub fn error_recommend(error_string: String) -> String { match error_string.as_str() { - "Parse error: Unexpected token x." => "Always explicitly state multiplication using an asterisk.", - _ => "Make sure you're using proper syntax! Check the 'Frequent issues' for more info" + _ => "Make sure you're using proper syntax! Check the 'Frequent issues' for possible fixes." }.to_string() } diff --git a/www/index.html b/www/index.html index 95fb905..3a03664 100644 --- a/www/index.html +++ b/www/index.html @@ -39,13 +39,13 @@

Frequent Issues

-

Not using explicit Multiplication

+

Not Using Explicit Multiplication

-

What Expressions can I use?

+

What Expressions Can I Use?