From 8f6ebf608db7759d0ca673b24bc9c7810484f169 Mon Sep 17 00:00:00 2001 From: BALAGANESH <85802233+balaganesh102004@users.noreply.github.com> Date: Sun, 7 Apr 2024 15:07:25 +0000 Subject: [PATCH] Made changes in documentation --- library/core/src/ops/try_trait.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/ops/try_trait.rs b/library/core/src/ops/try_trait.rs index 3f8c8efd416f3..483f55b207093 100644 --- a/library/core/src/ops/try_trait.rs +++ b/library/core/src/ops/try_trait.rs @@ -310,7 +310,7 @@ pub trait FromResidual::Residual> { /// This should be implemented consistently with the `branch` method such /// that applying the `?` operator will get back an equivalent residual: /// `FromResidual::from_residual(r).branch() --> ControlFlow::Break(r)`. - /// (It must not be an *identical* residual when interconversion is involved.) + /// (The residual is not mandated to be *identical* when interconversion is involved.) /// /// # Examples ///