Skip to content

Commit e63e139

Browse files
committed
Fix typo in ehprint! macro
1 parent 0947e74 commit e63e139

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#[macro_export]
33
macro_rules! ehprint {
44
($s:expr) => {
5-
$crate::semihosting:::io:ewrite_str($s);
5+
$crate::semihosting::io::ewrite_str($s);
66
};
77
($($arg:tt)*) => {
88
$crate::semihosting::io::ewrite_fmt(format_args!($($arg)*));

0 commit comments

Comments
 (0)