summaryrefslogtreecommitdiffstats
path: root/termcolor
diff options
context:
space:
mode:
authorRichard Dodd (dodj) <richard.o.dodd@gmail.com>2018-03-03 14:20:28 +0000
committerAndrew Gallant <jamslam@gmail.com>2018-03-03 09:20:28 -0500
commitb98585b429c2665f69d49ddec980933360e98a25 (patch)
treecdd93a83b71d3c0344abe6b94ce65f301563cccd /termcolor
parentf5411b992cb5287e35ceca724651121c0beb3995 (diff)
termcolor/doc: fix typo
Diffstat (limited to 'termcolor')
-rw-r--r--termcolor/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/termcolor/README.md b/termcolor/README.md
index 4cee4f22..7317d431 100644
--- a/termcolor/README.md
+++ b/termcolor/README.md
@@ -70,7 +70,7 @@ writeln!(&mut stdout, "green text!")?;
A `BufferWriter` can create buffers and write buffers to stdout or stderr. It
does *not* implement `io::Write` or `WriteColor` itself. Instead, `Buffer`
-implements `io::Write` and `io::WriteColor`.
+implements `io::Write` and `termcolor::WriteColor`.
This example shows how to print some green text to stderr.