about summary refs log tree commit diff
path: root/compiler/rustc_mir_transform/src
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2024-04-07 17:16:11 +0000
committerCamille GILLOT <gillot.camille@gmail.com>2024-04-20 19:23:49 +0000
commite12ef7984b48ace36c476f6a2deb661a5a6632b4 (patch)
tree423917e37f197a6f180cd7e3521822d8a74feb5f /compiler/rustc_mir_transform/src
parent9b846d4637f10a64f89c80631eae7710c23f1a5e (diff)
downloadrust-e12ef7984b48ace36c476f6a2deb661a5a6632b4.tar.gz
rust-e12ef7984b48ace36c476f6a2deb661a5a6632b4.zip
Pacify tidy.
Diffstat (limited to 'compiler/rustc_mir_transform/src')
-rw-r--r--compiler/rustc_mir_transform/src/ssa.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_mir_transform/src/ssa.rs b/compiler/rustc_mir_transform/src/ssa.rs
index 8b339cd4eff..55fed7d9da2 100644
--- a/compiler/rustc_mir_transform/src/ssa.rs
+++ b/compiler/rustc_mir_transform/src/ssa.rs
@@ -3,7 +3,7 @@
 //! 2/ This single assignment dominates all uses;
 //!
 //! As we do not track indirect assignments, a local that has its address taken (either by
-//! AddressOf or by borrowing) is considered non-SSA.  However, it is UB to modify through an
+//! AddressOf or by borrowing) is considered non-SSA. However, it is UB to modify through an
 //! immutable borrow of a `Freeze` local. Those can still be considered to be SSA.
 
 use rustc_data_structures::graph::dominators::Dominators;