mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-18 15:39:04 +00:00
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)]
|
#[inline(always)]
|
||||||
fn formatting(&self) -> (Color, &'static str) {
|
fn formatting(&self) -> (Color, &'static str) {
|
||||||
match *self {
|
match *self {
|
||||||
Success(..) => (Green, "Succcess"),
|
Success(..) => (Green, "Success"),
|
||||||
Failure(..) => (Red, "Failure"),
|
Failure(..) => (Red, "Failure"),
|
||||||
Forward(..) => (Yellow, "Forward"),
|
Forward(..) => (Yellow, "Forward"),
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user