Update errors/src/errors/type_checker/type_checker_error.rs

Co-authored-by: d0cd <23022326+d0cd@users.noreply.github.com>
Signed-off-by: evan-schott <53463459+evan-schott@users.noreply.github.com>
This commit is contained in:
evan-schott 2024-04-08 11:45:34 -07:00 committed by GitHub
parent 6ae10e5889
commit 62849540fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -865,7 +865,7 @@ create_messages!(
invalid_method_call {
args: (),
msg: "Not a valid method call.".to_string(),
help: Some("Ex: for `f: Future` call associated method for the struct instance `f.await()`.".to_string()),
help: Some("For a `f: Future`, call the associated method `f.await()`.".to_string()),
}
@formatted