From fb65ca14b21cb3210251915864007d7c0d64ae21 Mon Sep 17 00:00:00 2001 From: Giacomo Stevanato Date: Sun, 24 Mar 2024 11:20:10 +0100 Subject: [PATCH] Clarify transmute example --- library/core/src/intrinsics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/intrinsics.rs b/library/core/src/intrinsics.rs index dec31548fc8..bb1debfc77d 100644 --- a/library/core/src/intrinsics.rs +++ b/library/core/src/intrinsics.rs @@ -1356,7 +1356,7 @@ pub const fn unlikely(b: bool) -> bool { /// let v_clone = v_orig.clone(); /// /// // This is the suggested, safe way. - /// // It does copy the entire vector, though, into a new array. + /// // It may copy the entire vector into a new one though, but also may not. /// let v_collected = v_clone.into_iter() /// .map(Some) /// .collect::>>();