Fix typo in docs

This commit is contained in:
David Pedersen 2022-09-18 22:24:11 +02:00
parent 21876fcc64
commit c93d7c324e

View File

@ -220,7 +220,7 @@ use std::{
/// } /// }
/// ``` /// ```
/// ///
/// In general however we recommend you implement `Clone` to all your state types to avoid /// In general however we recommend you implement `Clone` for all your state types to avoid
/// potential type errors. /// potential type errors.
#[derive(Debug, Default, Clone, Copy)] #[derive(Debug, Default, Clone, Copy)]
pub struct State<S>(pub S); pub struct State<S>(pub S);