diff options
| author | Bernardo Meurer <meurerbernardo@gmail.com> | 2018-08-22 16:58:39 -0300 |
|---|---|---|
| committer | Bernardo Meurer <meurerbernardo@gmail.com> | 2018-08-23 08:54:23 -0700 |
| commit | 35f25bfef3012c634a8c255033c9dbdcf268fb41 (patch) | |
| tree | c47a043cef37ffa81a49969c1cdd24bd9e986d03 /src/librustc | |
| parent | 37db3db53dd1cd34b22efb52e2cd79b34aeb7e11 (diff) | |
| download | rust-35f25bfef3012c634a8c255033c9dbdcf268fb41.tar.gz rust-35f25bfef3012c634a8c255033c9dbdcf268fb41.zip | |
Reflow and fixup comments
Diffstat (limited to 'src/librustc')
| -rw-r--r-- | src/librustc/mir/interpret/mod.rs | 3 |
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>), } |
