We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8faa3c2 commit ce83642Copy full SHA for ce83642
src/setup/states.rs
@@ -372,14 +372,14 @@ impl<StatusCheck: ObjectSetupStatusCheck> std::fmt::Display
372
f,
373
"[ {:^9} ]",
374
match self.0.status() {
375
- ObjectStatus::New => "NEW",
+ ObjectStatus::New => "TO CREATE",
376
ObjectStatus::Existing =>
377
if self.0.is_up_to_date() {
378
"READY"
379
} else {
380
- "UPDATED"
+ "TO UPDATE"
381
},
382
- ObjectStatus::Deleted => "DELETED",
+ ObjectStatus::Deleted => "TO DELETE",
383
ObjectStatus::Invalid => "INVALID",
384
}
385
)
0 commit comments