Update marker.rs · patricklam/verify-rust-std@870dfed (original) (raw)
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -299,7 +299,7 @@ marker_impls! { | ||
| 299 | 299 | /// |
| 300 | 300 | /// This isn't always desired. For example, shared references (`&T`) can be copied regardless of |
| 301 | 301 | /// whether `T` is `Copy`. Likewise, a generic struct containing markers such as [`PhantomData`] |
| 302 | -/// could potentially be duplicated with a bit-wise copy. | |
| 302 | +/// could potentially be duplicated with a bit-wise copy. | |
| 303 | 303 | /// |
| 304 | 304 | /// ## What's the difference between `Copy` and `Clone`? |
| 305 | 305 | /// |