about summary refs log tree commit diff
path: root/src/librustc/mir
diff options
context:
space:
mode:
authorBernardo Meurer <meurerbernardo@gmail.com>2018-08-22 16:58:39 -0300
committerBernardo Meurer <meurerbernardo@gmail.com>2018-08-23 08:54:23 -0700
commit35f25bfef3012c634a8c255033c9dbdcf268fb41 (patch)
treec47a043cef37ffa81a49969c1cdd24bd9e986d03 /src/librustc/mir
parent37db3db53dd1cd34b22efb52e2cd79b34aeb7e11 (diff)
downloadrust-35f25bfef3012c634a8c255033c9dbdcf268fb41.tar.gz
rust-35f25bfef3012c634a8c255033c9dbdcf268fb41.zip
Reflow and fixup comments
Diffstat (limited to 'src/librustc/mir')
-rw-r--r--src/librustc/mir/interpret/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc/mir/interpret/mod.rs b/src/librustc/mir/interpret/mod.rs
index 93cc5fe492f..6458c211ab5 100644
--- a/src/librustc/mir/interpret/mod.rs
+++ b/src/librustc/mir/interpret/mod.rs
@@ -50,7 +50,8 @@ use std::num::NonZeroU32;
 pub enum Lock {
     NoLock,
     WriteLock(DynamicLifetime),
-    /// This should never be empty -- that would be a read lock held and nobody there to release it...
+    /// This should never be empty -- that would be a read lock held and nobody
+    /// there to release it...
     ReadLock(Vec<DynamicLifetime>),
 }