Skip to content

Commit 7da2228

Browse files
committed
small word fix
1 parent 9f9b923 commit 7da2228

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

rust/stackablectl/src/cmds/demo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ async fn install_cmd(
419419
if Confirm::new()
420420
.with_prompt(
421421
format!(
422-
"Demos installed in the '{DEFAULT_NAMESPACE}' namespace cannot be deleted with stackablectl. Install the demo in the '{demo_namespace}' namespace instead?",
422+
"Demos installed in the '{DEFAULT_NAMESPACE}' namespace cannot be uninstalled with stackablectl. Install the demo in the '{demo_namespace}' namespace instead?",
423423
demo_namespace = args.demo_name.clone())
424424
)
425425
.default(true)

rust/stackablectl/src/cmds/stack.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ async fn install_cmd(
394394
if Confirm::new()
395395
.with_prompt(
396396
format!(
397-
"Stacks installed in the '{DEFAULT_NAMESPACE}' namespace cannot be deleted with stackablectl. Install the stack in the '{stack_namespace}' namespace instead?",
397+
"Stacks installed in the '{DEFAULT_NAMESPACE}' namespace cannot be uninstalled with stackablectl. Install the stack in the '{stack_namespace}' namespace instead?",
398398
stack_namespace = args.stack_name.clone())
399399
)
400400
.default(true)

0 commit comments

Comments
 (0)