1
Fork 0

Trailing full stop

Co-Authored-By: Mazdak Farrokhzad <twingoow@gmail.com>
This commit is contained in:
Ralf Jung 2019-11-13 09:05:57 +01:00 committed by GitHub
parent 1b8b2ee6f9
commit aba385abbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1554,7 +1554,7 @@ impl<T: ?Sized> UnsafeCell<T> {
/// This can be cast to a pointer of any kind.
/// Ensure that the access is unique (no active references, mutable or not)
/// when casting to `&mut T`, and ensure that there are no mutations
/// or mutable aliases going on when casting to `&T`
/// or mutable aliases going on when casting to `&T`.
///
/// # Examples
///