Skip to content

Commit 324d58f

Browse files
committed
The to They, add periods to bulleted list
1 parent 3a5678c commit 324d58f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/libcore/mem.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ pub use intrinsics::transmute;
5454
///
5555
/// # When To Use
5656
///
57-
/// There's only a few reasons to use this function. The mainly come
57+
/// There's only a few reasons to use this function. They mainly come
5858
/// up in unsafe code or FFI code.
5959
///
6060
/// * You have an uninitialized value, perhaps for performance reasons, and
61-
/// need to prevent the destructor from running on it
62-
/// * You have two copies of a value (like std::mem::swap), but need the
63-
/// destructor to only run once to prevent a double free
64-
/// * Transferring resources across FFI boundries
61+
/// need to prevent the destructor from running on it.
62+
/// * You have two copies of a value (like `std::mem::swap`), but need the
63+
/// destructor to only run once to prevent a double free.
64+
/// * Transferring resources across FFI boundries.
6565
///
6666
/// # Example
6767
///

0 commit comments

Comments
 (0)