From b1b37384cd6cf45525962a4535188e944493ad9a Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Wed, 30 Mar 2016 19:34:53 +0200 Subject: [PATCH] =?UTF-8?q?Book:=20Fix=20phrasing:=20=E2=80=9Can=20associa?= =?UTF-8?q?ted=20type=E2=80=9D=20=E2=86=92=20=E2=80=9Ca=20trait=20with=20a?= =?UTF-8?q?n=20associated=20type=E2=80=9D.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/doc/book/associated-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/associated-types.md b/src/doc/book/associated-types.md index a0676a33996fc..cb54ac2419ecd 100644 --- a/src/doc/book/associated-types.md +++ b/src/doc/book/associated-types.md @@ -131,7 +131,7 @@ declarations. ## Trait objects with associated types There’s one more bit of syntax we should talk about: trait objects. If you -try to create a trait object from an associated type, like this: +try to create a trait object from a trait with an associated type, like this: ```rust,ignore # trait Graph {