about summary refs log tree commit diff
diff options
context:
space:
mode:
authorkijima <norimaking777@gmail.com>2021-11-30 01:31:10 +0900
committerkijima <norimaking777@gmail.com>2021-11-30 01:31:10 +0900
commit3c42a11895224c0e8c1b37ea0ba77adc03ed2f63 (patch)
tree6c5cfbbbeb50650ba815b03a670a7b2aab9ab944
parent8b954910c59a7a362c60959e93110892b6e9a691 (diff)
downloadrust-3c42a11895224c0e8c1b37ea0ba77adc03ed2f63.tar.gz
rust-3c42a11895224c0e8c1b37ea0ba77adc03ed2f63.zip
Fix small typo
-rw-r--r--compiler/rustc_errors/src/emitter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_errors/src/emitter.rs b/compiler/rustc_errors/src/emitter.rs
index d64a589bd9b..467ba9755f9 100644
--- a/compiler/rustc_errors/src/emitter.rs
+++ b/compiler/rustc_errors/src/emitter.rs
@@ -2083,7 +2083,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}', ""),