Fix small typo on user_error macro

Unless this is an inside joke that I am not aware of 😅
This commit is contained in:
Fábio Beirão 2023-05-30 15:47:38 +02:00
parent ef05ec6906
commit 9289f28939
No known key found for this signature in database
GPG key ID: 13FD3A2130278AAE

View file

@ -24,7 +24,7 @@ macro_rules! internal_error {
macro_rules! user_error {
($($arg:tt)*) => ({
eprintln!("We ran into an issue while compiling your code.");
eprintln!("Sadly, we don't havs a pretty error message for this case yet.");
eprintln!("Sadly, we don't have a pretty error message for this case yet.");
eprintln!("If you can't figure out the problem from the context below, please reach out at: https://roc.zulipchat.com/");
eprintln!($($arg)*);
std::process::exit(1);