diff --git a/crates/compiler/load/tests/test_reporting.rs b/crates/compiler/load/tests/test_reporting.rs index df088211c8..8cf645597a 100644 --- a/crates/compiler/load/tests/test_reporting.rs +++ b/crates/compiler/load/tests/test_reporting.rs @@ -4563,7 +4563,7 @@ mod test_reporting { comment_with_control_character, "# comment with a \x07\n", @r###" - ── ASII CONTROL CHARACTER ──────── tmp/comment_with_control_character/Test.roc ─ + ── ASCII CONTROL CHARACTER ─────── tmp/comment_with_control_character/Test.roc ─ I encountered an ASCII control character: diff --git a/crates/reporting/src/error/parse.rs b/crates/reporting/src/error/parse.rs index 686840203e..2631bdf1f5 100644 --- a/crates/reporting/src/error/parse.rs +++ b/crates/reporting/src/error/parse.rs @@ -3893,7 +3893,7 @@ fn to_space_report<'a>( Report { filename, doc, - title: "ASII CONTROL CHARACTER".to_string(), + title: "ASCII CONTROL CHARACTER".to_string(), severity: Severity::RuntimeError, } }