Skip to content

Commit 56c838c

Browse files
authored
Rollup merge of #91358 - kd-collective:fix_typo, r=cjgillot
Fix small typo Fix a typo in code commenting! `accross` -> `across`
2 parents a940c68 + 3c42a11 commit 56c838c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_errors/src/emitter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2094,7 +2094,7 @@ const OUTPUT_REPLACEMENTS: &[(char, &str)] = &[
20942094
('\t', " "), // We do our own tab replacement
20952095
('\u{200D}', ""), // Replace ZWJ with nothing for consistent terminal output of grapheme clusters.
20962096
('\u{202A}', ""), // The following unicode text flow control characters are inconsistently
2097-
('\u{202B}', ""), // supported accross CLIs and can cause confusion due to the bytes on disk
2097+
('\u{202B}', ""), // supported across CLIs and can cause confusion due to the bytes on disk
20982098
('\u{202D}', ""), // not corresponding to the visible source code, so we replace them always.
20992099
('\u{202E}', ""),
21002100
('\u{2066}', ""),

0 commit comments

Comments
 (0)