Skip to content

Commit e60072f

Browse files
committed
fixup! Avoid extraneous space between visibility kw and ident for statics
1 parent abfbd1b commit e60072f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/rustdoc/static.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
#![crate_type = "lib"]
44

5-
// @has static/static.FOO.html '//pre[@class="static"]' 'static FOO: usize'
5+
// @has static/static.FOO.html '//pre' 'static FOO: usize'
66
static FOO: usize = 1;
77

8-
// @has static/static.BAR.html '//pre[@class="static"]' 'pub static BAR: usize'
8+
// @has static/static.BAR.html '//pre' 'pub static BAR: usize'
99
pub static BAR: usize = 1;
1010

11-
// @has static/static.BAZ.html '//pre[@class="static"]' 'pub static mut BAZ: usize'
11+
// @has static/static.BAZ.html '//pre' 'pub static mut BAZ: usize'
1212
pub static mut BAZ: usize = 1;

0 commit comments

Comments
 (0)