From 89b9caf1552b98c5260cefdf05fa44a723e31b21 Mon Sep 17 00:00:00 2001 From: Samuel Almeida Date: Sun, 6 Mar 2022 22:37:28 -0300 Subject: [PATCH] Fixed extra indentation at line 43. --- src/generics/phantom/testcase_units.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {