style fix

This commit is contained in:
Maxim Nazarenko 2018-02-27 23:21:04 +02:00
parent 273166e765
commit d9b8724a80

View File

@ -1172,7 +1172,7 @@ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
/// reference is obtained. This is often done via runtime checks.
///
/// Note that while mutating or mutably aliasing the contents of an `& UnsafeCell<T>` is
/// okay (provided you enforce the invariants some other way); it is still undefined behavior
/// okay (provided you enforce the invariants some other way), it is still undefined behavior
/// to have multiple `&mut UnsafeCell<T>` aliases.
///
///