1
Fork 0

Fix Tidy error

This commit is contained in:
Aaron Hill 2018-11-28 21:39:20 -05:00
parent 5045e12bd7
commit 9139374181
No known key found for this signature in database
GPG key ID: B4087E510E98B164

View 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;