From 80936ae38f58f52ebed35d8089e5cb64a82d803a Mon Sep 17 00:00:00 2001 From: Josef Brandl Date: Mon, 16 Apr 2018 10:41:19 +0200 Subject: [PATCH] Fix grammar for orphan check --- src/items/implementations.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/items/implementations.md b/src/items/implementations.md index 47a530dc6..02b1e88aa 100644 --- a/src/items/implementations.md +++ b/src/items/implementations.md @@ -113,9 +113,9 @@ the following conditions: ```ignore T = C - | &T - | &mut T - | Box + | &C + | &mut C + | Box ``` ## Generic Implementations @@ -137,4 +137,4 @@ impl Seq for u32 { ``` -[trait]: items/traits.html \ No newline at end of file +[trait]: items/traits.html