- {
[0].iter()
}
diff --git a/tests/rustdoc/decl-line-wrapping-empty-arg-list.decl.html b/tests/rustdoc/decl-line-wrapping-empty-arg-list.decl.html
index 29c08c5bd5d..12c6bc214a7 100644
--- a/tests/rustdoc/decl-line-wrapping-empty-arg-list.decl.html
+++ b/tests/rustdoc/decl-line-wrapping-empty-arg-list.decl.html
@@ -1,2 +1 @@
-
pub fn create(
-) -> Padding00000000000000000000000000000000000000000000000000000000000000000000000000000000
\ No newline at end of file
+pub fn create() -> Padding00000000000000000000000000000000000000000000000000000000000000000000000000000000
\ No newline at end of file
diff --git a/tests/rustdoc/decl-trailing-whitespace.declaration.html b/tests/rustdoc/decl-trailing-whitespace.declaration.html
index 59c318c16f3..0cc3f0fa244 100644
--- a/tests/rustdoc/decl-trailing-whitespace.declaration.html
+++ b/tests/rustdoc/decl-trailing-whitespace.declaration.html
@@ -3,7 +3,7 @@
fn poll_write(
self,
cx: &mut Option<String>,
- buf: &mut [usize]
+ buf: &mut [usize],
) -> Option<Result<usize, Error>>;
fn poll_flush(self, cx: &mut Option<String>) -> Option<Result<(), Error>>;
fn poll_close(self, cx: &mut Option<String>) -> Option<Result<(), Error>>;
@@ -12,6 +12,6 @@
fn poll_write_vectored(
self,
cx: &mut Option<String>,
- bufs: &[usize]
+ bufs: &[usize],
) -> Option<Result<usize, Error>> { ... }
}
\ No newline at end of file
diff --git a/tests/rustdoc/inline_cross/impl_trait.rs b/tests/rustdoc/inline_cross/impl_trait.rs
index 47e2c9dc76b..19d1673f2eb 100644
--- a/tests/rustdoc/inline_cross/impl_trait.rs
+++ b/tests/rustdoc/inline_cross/impl_trait.rs
@@ -11,7 +11,7 @@
// @has impl_trait/fn.func2.html
// @has - '//pre[@class="rust item-decl"]' "func2("
// @has - '//pre[@class="rust item-decl"]' "_x: impl Deref> + Iterator- ,"
-// @has - '//pre[@class="rust item-decl"]' "_y: impl Iterator
- )"
+// @has - '//pre[@class="rust item-decl"]' "_y: impl Iterator
- , )"
// @!has - '//pre[@class="rust item-decl"]' 'where'
pub use impl_trait_aux::func2;
diff --git a/tests/rustdoc/line-breaks.rs b/tests/rustdoc/line-breaks.rs
index 21aa3a03ce4..0f760d51973 100644
--- a/tests/rustdoc/line-breaks.rs
+++ b/tests/rustdoc/line-breaks.rs
@@ -6,7 +6,7 @@
// @matches foo/fn.function_with_a_really_long_name.html '//*[@class="rust item-decl"]//code' "\
// function_with_a_really_long_name\(\n\
// \ parameter_one: i32,\n\
-// \ parameter_two: i32\n\
+// \ parameter_two: i32,\n\
// \) -> Option$"
pub fn function_with_a_really_long_name(parameter_one: i32, parameter_two: i32) -> Option {
Some(parameter_one + parameter_two)
diff --git a/tests/rustdoc/reexports-priv.rs b/tests/rustdoc/reexports-priv.rs
index 1eee262d233..97318a01410 100644
--- a/tests/rustdoc/reexports-priv.rs
+++ b/tests/rustdoc/reexports-priv.rs
@@ -98,7 +98,7 @@ pub mod inner {
pub use reexports::foo;
// @has 'foo/outer/inner/fn.foo_crate.html' '//pre[@class="rust item-decl"]' 'pub(crate) fn foo_crate()'
pub(crate) use reexports::foo_crate;
- // @has 'foo/outer/inner/fn.foo_super.html' '//pre[@class="rust item-decl"]' 'pub(in outer) fn foo_super( )'
+ // @has 'foo/outer/inner/fn.foo_super.html' '//pre[@class="rust item-decl"]' 'pub(in outer) fn foo_super()'
pub(super) use::reexports::foo_super;
// @!has 'foo/outer/inner/fn.foo_self.html'
pub(self) use reexports::foo_self;