Skip to content

Commit 3c42a11

Browse files
committed
Fix small typo
1 parent 8b95491 commit 3c42a11

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
@@ -2083,7 +2083,7 @@ const OUTPUT_REPLACEMENTS: &[(char, &str)] = &[
20832083
('\t', " "), // We do our own tab replacement
20842084
('\u{200D}', ""), // Replace ZWJ with nothing for consistent terminal output of grapheme clusters.
20852085
('\u{202A}', ""), // The following unicode text flow control characters are inconsistently
2086-
('\u{202B}', ""), // supported accross CLIs and can cause confusion due to the bytes on disk
2086+
('\u{202B}', ""), // supported across CLIs and can cause confusion due to the bytes on disk
20872087
('\u{202D}', ""), // not corresponding to the visible source code, so we replace them always.
20882088
('\u{202E}', ""),
20892089
('\u{2066}', ""),

0 commit comments

Comments
 (0)