Spaces around in type bounds

This commit is contained in:
Theodore DeRego 2015-04-30 16:52:11 -10:00
parent 381491b3b3
commit 4f75227714
2 changed files with 10 additions and 6 deletions

View File

@ -41,7 +41,11 @@ impl Foo {
}
}
pub fn render<'a, N: Clone+'a, E: Clone+'a, G: Labeller<'a, N, E>+GraphWalk<'a, N, E>, W: Write>
pub fn render<'a,
N: Clone + 'a,
E: Clone + 'a,
G: Labeller<'a, N, E> + GraphWalk<'a, N, E>,
W: Write>
(g: &'a G,
w: &mut W)
-> io::Result<()> {