Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo 'I trying' -> 'I am trying' #6057

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/compiler/load/tests/test_reporting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4269,7 +4269,7 @@ mod test_reporting {
@r###"
── SYNTAX PROBLEM ──────────────────────────────────────── /code/proj/Main.roc ─

I trying to parse a record field access here:
I am trying to parse a record field access here:

4│ foo.bar.
^
Expand Down Expand Up @@ -5667,7 +5667,7 @@ All branches in an `if` must have the same type!
@r###"
── SYNTAX PROBLEM ──────────────────────────────────────── /code/proj/Main.roc ─

I trying to parse a record field access here:
I am trying to parse a record field access here:

4│ Num.add . 23
^
Expand Down
4 changes: 2 additions & 2 deletions crates/reporting/src/error/canonicalize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,7 @@ fn to_bad_ident_expr_report<'b>(
let region = LineColumnRegion::from_pos(lines.convert_pos(pos));

alloc.stack([
alloc.reflow(r"I trying to parse a record field access here:"),
alloc.reflow(r"I am trying to parse a record field access here:"),
alloc.region_with_subregion(lines.convert_region(surroundings), region),
alloc.concat([
alloc.reflow("So I expect to see a lowercase letter next, like "),
Expand Down Expand Up @@ -1377,7 +1377,7 @@ fn to_bad_ident_pattern_report<'b>(
let region = LineColumnRegion::from_pos(lines.convert_pos(pos));

alloc.stack([
alloc.reflow(r"I trying to parse a record field accessor here:"),
alloc.reflow(r"I am trying to parse a record field accessor here:"),
alloc.region_with_subregion(lines.convert_region(surroundings), region),
alloc.concat([
alloc.reflow("Something like "),
Expand Down