about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2018-06-09 21:06:40 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2018-06-13 21:18:56 +0200
commit6d5e6b49285766151d9fe148341a3497b7800843 (patch)
tree2ddb9924587578050e9c8964c014a0b46cf874f1
parent2e343f384fa6517330c290f353d3bd8d21476dc3 (diff)
downloadrust-6d5e6b49285766151d9fe148341a3497b7800843.tar.gz
rust-6d5e6b49285766151d9fe148341a3497b7800843.zip
Fix rustdoc test failure
-rw-r--r--src/test/rustdoc/cap-lints.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/rustdoc/cap-lints.rs b/src/test/rustdoc/cap-lints.rs
index e7f308a6f0b..39e753daadb 100644
--- a/src/test/rustdoc/cap-lints.rs
+++ b/src/test/rustdoc/cap-lints.rs
@@ -13,8 +13,8 @@
 // therefore should not concern itself with the lints.
 #[deny(warnings)]
 
-// @has cap_lints/struct.foo.html //pre '#[must_use]'
+// @has cap_lints/struct.Foo.html //pre '#[must_use]'
 #[must_use]
-pub struct foo {
+pub struct Foo {
     field: i32,
 }