about summary refs log tree commit diff
path: root/compiler/rustc_parse/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-01-15 01:01:37 +0100
committerGitHub <noreply@github.com>2023-01-15 01:01:37 +0100
commitcc02ecc0101ab91627bf470166df10cd85ae8ec3 (patch)
tree6b1cfe1b3bee6428feb1a7be3ac62bde67dae2fc /compiler/rustc_parse/src
parent980bf1979e28b4acc4e189b4266afd5f58b68d6d (diff)
parent0e65003c9e0ea97d7fcfbdb01cca181558b5fa15 (diff)
downloadrust-cc02ecc0101ab91627bf470166df10cd85ae8ec3.tar.gz
rust-cc02ecc0101ab91627bf470166df10cd85ae8ec3.zip
Rollup merge of #106863 - anden3:compiler-double-spaces, r=Nilstrieb
Remove various double spaces in compiler source comments.

Was asked to do it by `@Nilstrieb`
Diffstat (limited to 'compiler/rustc_parse/src')
-rw-r--r--compiler/rustc_parse/src/parser/pat.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/parser/pat.rs b/compiler/rustc_parse/src/parser/pat.rs
index 0b057f2f577..e73a17ced7d 100644
--- a/compiler/rustc_parse/src/parser/pat.rs
+++ b/compiler/rustc_parse/src/parser/pat.rs
@@ -469,7 +469,7 @@ impl<'a> Parser<'a> {
     /// Try to recover the more general form `intersect ::= $pat_lhs @ $pat_rhs`.
     ///
     /// Allowed binding patterns generated by `binding ::= ref? mut? $ident @ $pat_rhs`
-    /// should already have been parsed by now  at this point,
+    /// should already have been parsed by now at this point,
     /// if the next token is `@` then we can try to parse the more general form.
     ///
     /// Consult `parse_pat_ident` for the `binding` grammar.