Rollup merge of #35948 - tshepang:missing-comma, r=steveklabnik

reference: add trailing commas
This commit is contained in:
Jonathan Turner 2016-08-24 10:35:29 -07:00 committed by GitHub
commit 411a85e271

View file

@ -2283,7 +2283,7 @@ the `PartialEq` or `Clone` constraints for the appropriate `impl`:
#[derive(PartialEq, Clone)]
struct Foo<T> {
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 {