diff options
| author | Godfrey Chan <godfreykfc@gmail.com> | 2024-09-03 12:29:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-03 12:29:23 -0700 |
| commit | e45b53efc0ef0f86df82918720cfae78e295e3ac (patch) | |
| tree | 9e17a07e8ba7f27ba6ebc6da337ec4cfd46ead3a | |
| parent | 277a08c7d800880863a1386e19379efb98ca3f07 (diff) | |
| download | rust-e45b53efc0ef0f86df82918720cfae78e295e3ac.tar.gz rust-e45b53efc0ef0f86df82918720cfae78e295e3ac.zip | |
Update marker.rs
| -rw-r--r-- | library/core/src/marker.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/marker.rs b/library/core/src/marker.rs index a13cef26dee..d9f197d9510 100644 --- a/library/core/src/marker.rs +++ b/library/core/src/marker.rs @@ -295,7 +295,7 @@ marker_impls! { /// #[derive(Clone)] /// struct MyStruct<T>(T); /// -/// impl<T: Copy> Copy for MyStruct<T> { } +/// impl<T: Copy> Copy for MyStruct<T> { } /// ``` /// /// This isn't always desired. For example, shared references (`&T`) can be copied regardless of |
