From 2aead598c83988a74c2b3cd8abf6fe4a170ab1a9 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Sun, 18 Feb 2018 01:23:06 -0500 Subject: [PATCH] Remove extra space in test --- src/test/rustdoc/synthetic_auto/complex.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/rustdoc/synthetic_auto/complex.rs b/src/test/rustdoc/synthetic_auto/complex.rs index 896d49ca79a..81259a50108 100644 --- a/src/test/rustdoc/synthetic_auto/complex.rs +++ b/src/test/rustdoc/synthetic_auto/complex.rs @@ -32,7 +32,7 @@ mod foo { // @has complex/struct.NotOuter.html // @has - '//*[@id="synthetic-implementations-list"]/*[@class="impl"]/*/code' "impl<'a, T, K: \ // ?Sized> Send for NotOuter<'a, T, K> where 'a: 'static, K: for<'b> Fn((&'b bool, &'a u8)) \ -// -> &'b i8, >::MyItem: Copy, T: MyTrait<'a>" +// -> &'b i8, >::MyItem: Copy, T: MyTrait<'a>" pub use foo::{Foo, Inner as NotInner, MyTrait as NotMyTrait, Outer as NotOuter}; @@ -46,7 +46,7 @@ unsafe impl<'a, Q, R: ?Sized> Send for NotInner<'a, Q, R> where Q: NotMyTrait<'a>, >::MyItem: Copy, - /* for<'b> */ R: for<'b> Fn((&'b bool, &'a u8)) -> &'b i8, + R: for<'b> Fn((&'b bool, &'a u8)) -> &'b i8, Foo: Send, { }