mirror of https://github.com/rwf2/Rocket.git
Fix typo in Outcome formatting: Succcess -> Success.
This commit is contained in:
parent
61fb573622
commit
eb8d973abd
|
@ -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"),
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue