about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2024-09-03 12:29:23 -0700
committerGitHub <noreply@github.com>2024-09-03 12:29:23 -0700
commite45b53efc0ef0f86df82918720cfae78e295e3ac (patch)
tree9e17a07e8ba7f27ba6ebc6da337ec4cfd46ead3a
parent277a08c7d800880863a1386e19379efb98ca3f07 (diff)
downloadrust-e45b53efc0ef0f86df82918720cfae78e295e3ac.tar.gz
rust-e45b53efc0ef0f86df82918720cfae78e295e3ac.zip
Update marker.rs
-rw-r--r--library/core/src/marker.rs2
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