File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -54,14 +54,14 @@ pub use intrinsics::transmute;
54
54
///
55
55
/// # When To Use
56
56
///
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
58
58
/// up in unsafe code or FFI code.
59
59
///
60
60
/// * 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.
65
65
///
66
66
/// # Example
67
67
///
You can’t perform that action at this time.
0 commit comments