about summary refs log tree commit diff
path: root/src/test/rustdoc-ui/doc-without-codeblock.rs
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2019-11-24 18:42:22 -0800
committerEsteban Küber <esteban@kuber.com.ar>2019-11-24 18:42:22 -0800
commite5816a75cc9951218e6ec06f64a5f07575c36770 (patch)
tree691085d41eb30974c6ac789276b29edb00648012 /src/test/rustdoc-ui/doc-without-codeblock.rs
parentf11759d38c70d3df67135f88a682701c1cf9762a (diff)
downloadrust-e5816a75cc9951218e6ec06f64a5f07575c36770.tar.gz
rust-e5816a75cc9951218e6ec06f64a5f07575c36770.zip
Fix some rustdoc error capitalization
Diffstat (limited to 'src/test/rustdoc-ui/doc-without-codeblock.rs')
-rw-r--r--src/test/rustdoc-ui/doc-without-codeblock.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/rustdoc-ui/doc-without-codeblock.rs b/src/test/rustdoc-ui/doc-without-codeblock.rs
index 4b2a91e9c81..5ad8e8a826f 100644
--- a/src/test/rustdoc-ui/doc-without-codeblock.rs
+++ b/src/test/rustdoc-ui/doc-without-codeblock.rs
@@ -1,13 +1,13 @@
-#![deny(missing_doc_code_examples)] //~ ERROR Missing code example in this documentation
+#![deny(missing_doc_code_examples)] //~ ERROR missing code example in this documentation
 
 /// Some docs.
-//~^ ERROR Missing code example in this documentation
+//~^ ERROR missing code example in this documentation
 pub struct Foo;
 
 /// And then, the princess died.
-//~^ ERROR Missing code example in this documentation
+//~^ ERROR missing code example in this documentation
 pub mod foo {
     /// Or maybe not because she saved herself!
-    //~^ ERROR Missing code example in this documentation
+    //~^ ERROR missing code example in this documentation
     pub fn bar() {}
 }