about summary refs log tree commit diff
path: root/src/liblog
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-03-11 21:11:40 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-03-11 21:11:40 -0400
commit64ab111b5387e9985df188a970350c9e6c7f1451 (patch)
treeb53d97e99191c256cd0bcfd9c510652b454e8477 /src/liblog
parentf899513a30165946a75ff7f515ab37a226e72172 (diff)
downloadrust-64ab111b5387e9985df188a970350c9e6c7f1451.tar.gz
rust-64ab111b5387e9985df188a970350c9e6c7f1451.zip
Example -> Examples
This brings comments in line with https://github.com/rust-lang/rfcs/blob/master/text/0505-api-comment-conventions.md#using-markdown
Diffstat (limited to 'src/liblog')
-rw-r--r--src/liblog/macros.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/liblog/macros.rs b/src/liblog/macros.rs
index f0f861a3831..1aee6e0be2e 100644
--- a/src/liblog/macros.rs
+++ b/src/liblog/macros.rs
@@ -16,7 +16,7 @@
 /// format!-based argument list. See documentation in `std::fmt` for details on
 /// how to use the syntax.
 ///
-/// # Example
+/// # Examples
 ///
 /// ```
 /// #[macro_use] extern crate log;
@@ -64,7 +64,7 @@ macro_rules! log {
 
 /// A convenience macro for logging at the error log level.
 ///
-/// # Example
+/// # Examples
 ///
 /// ```
 /// #[macro_use] extern crate log;
@@ -89,7 +89,7 @@ macro_rules! error {
 
 /// A convenience macro for logging at the warning log level.
 ///
-/// # Example
+/// # Examples
 ///
 /// ```
 /// #[macro_use] extern crate log;
@@ -113,7 +113,7 @@ macro_rules! warn {
 
 /// A convenience macro for logging at the info log level.
 ///
-/// # Example
+/// # Examples
 ///
 /// ```
 /// #[macro_use] extern crate log;
@@ -139,7 +139,7 @@ macro_rules! info {
 /// be omitted at compile time by passing `--cfg ndebug` to the compiler. If
 /// this option is not passed, then debug statements will be compiled.
 ///
-/// # Example
+/// # Examples
 ///
 /// ```
 /// #[macro_use] extern crate log;
@@ -162,7 +162,7 @@ macro_rules! debug {
 
 /// A macro to test whether a log level is enabled for the current module.
 ///
-/// # Example
+/// # Examples
 ///
 /// ```
 /// #[macro_use] extern crate log;