mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 00:24:34 +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 {
|
macro_rules! user_error {
|
||||||
($($arg:tt)*) => ({
|
($($arg:tt)*) => ({
|
||||||
eprintln!("We ran into an issue while compiling your code.");
|
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!("If you can't figure out the problem from the context below, please reach out at: https://roc.zulipchat.com/");
|
||||||
eprintln!($($arg)*);
|
eprintln!($($arg)*);
|
||||||
std::process::exit(1);
|
std::process::exit(1);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue