Skip to content

Commit

Permalink
Rollup merge of rust-lang#91358 - kd-collective:fix_typo, r=cjgillot
Browse files Browse the repository at this point in the history
Fix small typo

Fix a typo in code commenting!
`accross` -> `across`
  • Loading branch information
matthiaskrgr authored Nov 30, 2021
2 parents 86bd6a0 + 3c42a11 commit 06afe44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_errors/src/emitter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2094,7 +2094,7 @@ const OUTPUT_REPLACEMENTS: &[(char, &str)] = &[
('\t', " "), // We do our own tab replacement
('\u{200D}', ""), // Replace ZWJ with nothing for consistent terminal output of grapheme clusters.
('\u{202A}', ""), // The following unicode text flow control characters are inconsistently
('\u{202B}', ""), // supported accross CLIs and can cause confusion due to the bytes on disk
('\u{202B}', ""), // supported across CLIs and can cause confusion due to the bytes on disk
('\u{202D}', ""), // not corresponding to the visible source code, so we replace them always.
('\u{202E}', ""),
('\u{2066}', ""),
Expand Down

0 comments on commit 06afe44

Please sign in to comment.