about summary refs log tree commit diff
path: root/compiler/rustc_span/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-01-17 20:21:25 +0100
committerGitHub <noreply@github.com>2023-01-17 20:21:25 +0100
commit68f12338afed4162317225850719f558cefad71f (patch)
tree48afbd0e51e8c1b8a7f75b179078cb699ce16fd3 /compiler/rustc_span/src
parent38a76f33220c4b9d13dda1fa8f6c629c8a7bcc5d (diff)
parent7d59c0ccaa3aeb528a66ae3d2fec6a5ebbe44bc2 (diff)
downloadrust-68f12338afed4162317225850719f558cefad71f.tar.gz
rust-68f12338afed4162317225850719f558cefad71f.zip
Rollup merge of #104505 - WaffleLapkin:no-double-spaces-in-comments, r=jackh726
Remove double spaces after dots in comments

Most of the comments do not have double spaces, so I assume these are typos.
Diffstat (limited to 'compiler/rustc_span/src')
-rw-r--r--compiler/rustc_span/src/hygiene.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_span/src/hygiene.rs b/compiler/rustc_span/src/hygiene.rs
index a9a9a3fbf9d..dee823eefde 100644
--- a/compiler/rustc_span/src/hygiene.rs
+++ b/compiler/rustc_span/src/hygiene.rs
@@ -338,7 +338,7 @@ pub struct HygieneData {
     /// first and then resolved later), so we use an `Option` here.
     local_expn_data: IndexVec<LocalExpnId, Option<ExpnData>>,
     local_expn_hashes: IndexVec<LocalExpnId, ExpnHash>,
-    /// Data and hash information from external crates.  We may eventually want to remove these
+    /// Data and hash information from external crates. We may eventually want to remove these
     /// maps, and fetch the information directly from the other crate's metadata like DefIds do.
     foreign_expn_data: FxHashMap<ExpnId, ExpnData>,
     foreign_expn_hashes: FxHashMap<ExpnId, ExpnHash>,