remove recommendations

This commit is contained in:
Simon Gardling
2022-02-16 14:52:11 -05:00
parent 1935d92059
commit e544c4d35c
2 changed files with 4 additions and 5 deletions

View File

@@ -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()
}