From 800aa92aa3da58b82e682947024c7868650e05bc Mon Sep 17 00:00:00 2001 From: Cengiz Can Date: Thu, 4 Aug 2016 03:55:37 +0300 Subject: [PATCH] Use consistent spelling for word 'implementor' --- src/libcore/macros.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs index 1846ca83e05b..961e91d3e2c6 100644 --- a/src/libcore/macros.rs +++ b/src/libcore/macros.rs @@ -231,8 +231,8 @@ macro_rules! try { /// Calls `write_fmt` function on a writer /// -/// This macro takes an implementer of [`std::fmt::Write`][fmt_write] or -/// [`std::io::Write`][io_write] trait, a precompiled format string, and a list of arguments. +/// This macro takes an implementor of [`std::fmt::Write`][fmt_write] or +/// [`std::io::Write`][io_write] trait, a format string, and a list of arguments. /// /// Implementors of the `Write` trait are sometimes called 'writers'. /// @@ -272,8 +272,8 @@ macro_rules! write { /// On all platforms, the newline is the LINE FEED character (`\n`/`U+000A`) /// alone (no additional CARRIAGE RETURN (`\r`/`U+000D`). /// -/// This macro takes an implementer of [`std::fmt::Write`][fmt_write] or -/// [`std::io::Write`][io_write] trait, a precompiled format string, and a list of arguments. +/// This macro takes an implementor of [`std::fmt::Write`][fmt_write] or +/// [`std::io::Write`][io_write] trait, a format string, and a list of arguments. /// /// Implementors of the `Write` trait are sometimes called 'writers'. ///