From f4770c2094a9ca18807e591fcec09ce4455c60c2 Mon Sep 17 00:00:00 2001 From: Shubham Lagwankar Date: Sat, 21 Oct 2017 22:18:34 -0400 Subject: [PATCH] Fix typos --- termcolor/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/termcolor/src/lib.rs b/termcolor/src/lib.rs index b07071e..ff8a645 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), /// 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 ()>),