From b98585b429c2665f69d49ddec980933360e98a25 Mon Sep 17 00:00:00 2001 From: "Richard Dodd (dodj)" Date: Sat, 3 Mar 2018 14:20:28 +0000 Subject: [PATCH] termcolor/doc: fix typo --- termcolor/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.