Skip to content

Commit

Permalink
chore: fix unwanted capitalisation
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Feb 26, 2024
1 parent 89ec822 commit bd3c5a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compiler/noirc_evaluator/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ impl RuntimeError {
RuntimeError::InternalError(cause) => {
Diagnostic::simple_error(
"Internal Consistency Evaluators Errors: \n
This is likely a bug. Consider Opening an issue at https://github.com/noir-lang/noir/issues".to_owned(),
This is likely a bug. Consider opening an issue at https://github.com/noir-lang/noir/issues".to_owned(),
cause.to_string(),
noirc_errors::Span::inclusive(0, 0)
)
Expand Down
2 changes: 1 addition & 1 deletion compiler/noirc_frontend/src/monomorphization/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ impl MonomorphizationError {
fn into_diagnostic(self) -> CustomDiagnostic {
CustomDiagnostic::simple_error(
"Internal Consistency Evaluators Errors: \n
This is likely a bug. Consider Opening an issue at https://github.com/noir-lang/noir/issues".to_owned(),
This is likely a bug. Consider opening an issue at https://github.com/noir-lang/noir/issues".to_owned(),
self.to_string(),
noirc_errors::Span::inclusive(0, 0)
)
Expand Down

0 comments on commit bd3c5a1

Please sign in to comment.