From ab4c492d68be1d32f52f47bd263b62063ae9b8ae Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Tue, 23 Aug 2016 22:25:40 +0200 Subject: [PATCH] reference: add trailing commas --- src/doc/reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/reference.md b/src/doc/reference.md index f0ab1488d4015..be3559a588089 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -2283,7 +2283,7 @@ the `PartialEq` or `Clone` constraints for the appropriate `impl`: #[derive(PartialEq, Clone)] struct Foo { a: i32, - b: T + b: T, } ``` @@ -3896,7 +3896,7 @@ Coercion is allowed between the following types: use std::ops::Deref; struct CharContainer { - value: char + value: char, } impl Deref for CharContainer {