diff --git a/src/either_or_both.rs b/src/either_or_both.rs index baf540c34..1b9a66d3c 100644 --- a/src/either_or_both.rs +++ b/src/either_or_both.rs @@ -6,7 +6,7 @@ use either::Either; /// Value that either holds a single A or B, or both. #[derive(Clone, PartialEq, Eq, Hash, Debug)] -pub enum EitherOrBoth { +pub enum EitherOrBoth { /// Both values are present. Both(A, B), /// Only the left value of type `A` is present.