Skip to content

Commit 1e08ea2

Browse files
committed
typos
1 parent 27bfe2c commit 1e08ea2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

text/1860-manually-drop.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,12 @@ impl<T> Deref for ManuallyDrop<T> {
9393
impl<T> DerefMut for ManuallyDrop<T> {
9494
// ...
9595
}
96-
97-
// Other common impls such as `Debug for T: Debug`.
9896
```
9997

10098
The lang item will be treated specially by the compiler to not emit any drop
10199
glue for this type.
102100

103-
Let us apply this union to a somewhat expanded example from the motivation:
101+
Let us apply `ManuallyDrop` to a somewhat expanded example from the motivation:
104102

105103
```rust
106104
struct FruitBox {

0 commit comments

Comments
 (0)