diff --git a/src/generics/phantom/testcase_units.md b/src/generics/phantom/testcase_units.md index 00f59fe2de..c3b9cbd2e1 100644 --- a/src/generics/phantom/testcase_units.md +++ b/src/generics/phantom/testcase_units.md @@ -40,7 +40,7 @@ struct Length(f64, PhantomData); /// The `Add` trait defines the behavior of the `+` operator. impl Add for Length { - type Output = Length; + type Output = Length; // add() returns a new `Length` struct containing the sum. fn add(self, rhs: Length) -> Length {