Made changes in documentation

This commit is contained in:
BALAGANESH 2024-04-07 15:07:25 +00:00
parent 4e431fad67
commit 8f6ebf608d

View File

@ -310,7 +310,7 @@ pub trait FromResidual<R = <Self as Try>::Residual> {
/// This should be implemented consistently with the `branch` method such /// This should be implemented consistently with the `branch` method such
/// that applying the `?` operator will get back an equivalent residual: /// that applying the `?` operator will get back an equivalent residual:
/// `FromResidual::from_residual(r).branch() --> ControlFlow::Break(r)`. /// `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 /// # Examples
/// ///