Skip to content

Commit 3f0f8f3

Browse files
committed
Fix small typo in error message
1 parent 60c770f commit 3f0f8f3

File tree

1 file changed

+1
-1
lines changed
  • compiler/noirc_frontend/src/hir/resolution

1 file changed

+1
-1
lines changed

compiler/noirc_frontend/src/hir/resolution/errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ impl<'a> From<&'a ResolverError> for Diagnostic {
502502
ResolverError::MacroIsNotComptime { span } => {
503503
Diagnostic::simple_error(
504504
"This macro call is to a non-comptime function".into(),
505-
"Macro calls must be to comptime functions".into(),
505+
"Macro calls must be comptime functions".into(),
506506
*span,
507507
)
508508
},

0 commit comments

Comments
 (0)