about summary refs log tree commit diff
path: root/compiler/rustc_parse/src
diff options
context:
space:
mode:
authorLeón Orell Valerian Liehr <me@fmease.dev>2024-12-09 23:39:08 +0100
committerGitHub <noreply@github.com>2024-12-09 23:39:08 +0100
commit5a33ab0d7160e1d0facf5cdea4a1039c12eed229 (patch)
tree845db62fafb73a0ee0402c72fd14b66b73bdeb4a /compiler/rustc_parse/src
parentcb5f03cbce798417735859d753b2b6948e6ab63d (diff)
parent5404cbb9960c9aa15d104a658a94879237e5a845 (diff)
downloadrust-5a33ab0d7160e1d0facf5cdea4a1039c12eed229.tar.gz
rust-5a33ab0d7160e1d0facf5cdea4a1039c12eed229.zip
Rollup merge of #134084 - estebank:typo, r=compiler-errors
Fix typo in RFC mention 3598 -> 3593

https://github.com/rust-lang/rfcs/blob/master/text/3593-unprefixed-guarded-strings.md
Diffstat (limited to 'compiler/rustc_parse/src')
-rw-r--r--compiler/rustc_parse/src/lexer/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/lexer/mod.rs b/compiler/rustc_parse/src/lexer/mod.rs
index d97f05dc7eb..2426eb81678 100644
--- a/compiler/rustc_parse/src/lexer/mod.rs
+++ b/compiler/rustc_parse/src/lexer/mod.rs
@@ -822,7 +822,7 @@ impl<'psess, 'src> Lexer<'psess, 'src> {
 
     /// Detect guarded string literal syntax
     ///
-    /// RFC 3598 reserved this syntax for future use. As of Rust 2024,
+    /// RFC 3593 reserved this syntax for future use. As of Rust 2024,
     /// using this syntax produces an error. In earlier editions, however, it
     /// only results in an (allowed by default) lint, and is treated as
     /// separate tokens.