Fix typo in Outcome formatting: Succcess -> Success.

This commit is contained in:
Sean Griffin 2016-12-25 11:52:38 +13:00 committed by Sergio Benitez
parent 61fb573622
commit eb8d973abd
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ impl<S, E, F> Outcome<S, E, F> {
#[inline(always)]
fn formatting(&self) -> (Color, &'static str) {
match *self {
Success(..) => (Green, "Succcess"),
Success(..) => (Green, "Success"),
Failure(..) => (Red, "Failure"),
Forward(..) => (Yellow, "Forward"),
}