chore: delete 'error:' prefix on show_error

This commit is contained in:
Yağız can Değirmenci 2021-05-26 02:32:02 +03:00
parent c78a7937f8
commit 898d2eb489

View file

@ -25,7 +25,7 @@ macro_rules! executable(
#[macro_export]
macro_rules! show_error(
($($args:tt)+) => ({
eprint!("{}: error: ", executable!());
eprint!("{}: ", executable!());
eprintln!($($args)+);
})
);