Skip to content

Commit

Permalink
Fix small typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
asterite committed Oct 28, 2024
1 parent 60c770f commit 3f0f8f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/noirc_frontend/src/hir/resolution/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ impl<'a> From<&'a ResolverError> for Diagnostic {
ResolverError::MacroIsNotComptime { span } => {
Diagnostic::simple_error(
"This macro call is to a non-comptime function".into(),
"Macro calls must be to comptime functions".into(),
"Macro calls must be comptime functions".into(),
*span,
)
},
Expand Down

0 comments on commit 3f0f8f3

Please sign in to comment.