fix: Guaranteed results typo

This commit is contained in:
Karolin Varner
2023-12-02 12:15:33 +01:00
committed by Karolin Varner
parent d45e24e9b6
commit 1eefb5f263

View File

@@ -62,7 +62,7 @@ pub trait GuaranteedValue {
/// }
///
/// fn failable_multiply<T>(a: &T, b: u32)
/// -> Result<T, T::Error> {
/// -> Result<T, T::Error>
/// where
/// T: FailableAddition<Error> {
/// let mut accu = a.failable_addition(a)?;