mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
Fix small typo on user_error macro
Unless this is an inside joke that I am not aware of 😅
This commit is contained in:
parent
ef05ec6906
commit
9289f28939
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue