summaryrefslogtreecommitdiffstats
path: root/termcolor
diff options
context:
space:
mode:
authorShubham Lagwankar <shubhu105@gmail.com>2017-10-21 22:18:34 -0400
committerAndrew Gallant <jamslam@gmail.com>2017-10-21 22:38:01 -0400
commitf4770c2094a9ca18807e591fcec09ce4455c60c2 (patch)
tree4aa9c50b15ef9e0a6b0f6267eea5b077af1bd14e /termcolor
parentf887bc1f8673fea9969adae6e70b68e3761ba171 (diff)
Fix typos
Diffstat (limited to 'termcolor')
-rw-r--r--termcolor/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/termcolor/src/lib.rs b/termcolor/src/lib.rs
index b07071e9..ff8a645c 100644
--- a/termcolor/src/lib.rs
+++ b/termcolor/src/lib.rs
@@ -239,7 +239,7 @@ impl io::Write for IoStandardStream {
}
}
-/// Same rigamorale for the locked variants of the standard streams.
+/// Same rigmarole for the locked variants of the standard streams.
enum IoStandardStreamLock<'a> {
StdoutLock(io::StdoutLock<'a>),
@@ -295,7 +295,7 @@ enum WriterInnerLock<'a, W> {
Ansi(Ansi<W>),
/// What a gross hack. On Windows, we need to specify a lifetime for the
/// console when in a locked state, but obviously don't need to do that
- /// on Unix, which make the `'a` unused. To satisfy the compiler, we need
+ /// on Unix, which makes the `'a` unused. To satisfy the compiler, we need
/// a PhantomData.
#[allow(dead_code)]
Unreachable(::std::marker::PhantomData<&'a ()>),