Fix MaxReducer docstring (#357)

This commit is contained in:
Sönke 2021-11-06 13:39:20 +01:00 committed by GitHub
parent b4e15fe9f3
commit 5878129d22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ where
fn reduce(first: T, second: T) -> T;
}
/// A [`MinReducer`] reduces [`Integer`] values and returns their maximum.
/// A [`MaxReducer`] reduces [`Integer`] values and returns their maximum.
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct MaxReducer {}