]> git.lizzy.rs Git - rust.git/commitdiff
Fix Tidy error
authorAaron Hill <aa1ronham@gmail.com>
Thu, 29 Nov 2018 02:39:20 +0000 (21:39 -0500)
committerAaron Hill <aa1ronham@gmail.com>
Thu, 29 Nov 2018 02:39:20 +0000 (21:39 -0500)
src/test/rustdoc/synthetic_auto/self-referential.rs

index 077786b280fc378712acae9795756fa008030879..516a3c9a516ab335029f0212301cfe8a658eefc9 100644 (file)
@@ -35,6 +35,6 @@ impl<T> Pattern for Wrapper<T> {
 // @has self_referential/struct.WriteAndThen.html
 // @has - '//*[@id="synthetic-implementations-list"]/*[@class="impl"]//*/code' "impl<P1> Send for \
 // WriteAndThen<P1>  where  <P1 as Pattern>::Value: Send"
-pub struct WriteAndThen<P1>(pub P1::Value, pub <Constrain<P1, Wrapper<P1::Value>> as Pattern>::Value)
+pub struct WriteAndThen<P1>(pub P1::Value,pub <Constrain<P1, Wrapper<P1::Value>> as Pattern>::Value)
     where P1: Pattern;