From 2bfb44346199aec53f7857adf963a006fb8c2d0f Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Thu, 13 Aug 2026 14:22:42 -0400 Subject: [PATCH] core: Fix a typo in funnel shift documentation --- library/core/src/num/uint_macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/num/uint_macros.rs b/library/core/src/num/uint_macros.rs index 5d5df10694197..1664ce83aef72 100644 --- a/library/core/src/num/uint_macros.rs +++ b/library/core/src/num/uint_macros.rs @@ -565,7 +565,7 @@ macro_rules! uint_impl { /// This operation can be thought of as concatenating `self` and `right` into an /// integer twice the size of #[doc = concat!("`", stringify!($SelfT) , "`,")] - /// performing a right shift by `n`, and returning the **left half** of the result. + /// performing a right shift by `n`, and returning the **right half** of the result. /// /// The name comes from "funneling" a wider integer to a narrower integer. ///