diff options
| author | Ivan Blinkov <[email protected]> | 2025-02-19 01:40:50 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-02-19 12:40:50 +0300 |
| commit | bc40145b0eb68cd2e1eb0e9232bf033e7cc45712 (patch) | |
| tree | d66c28547aef6c5bfad5ae4f3da4443c9f212a95 | |
| parent | 77556a21ee605bffa7257fdf4d7fa67c66c8831b (diff) | |
[cli] fix mistype (#14766)
| -rw-r--r-- | ydb/public/lib/ydb_cli/commands/ydb_command.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/public/lib/ydb_cli/commands/ydb_command.cpp b/ydb/public/lib/ydb_cli/commands/ydb_command.cpp index 8a1e23c779a..cfdbae4fa8b 100644 --- a/ydb/public/lib/ydb_cli/commands/ydb_command.cpp +++ b/ydb/public/lib/ydb_cli/commands/ydb_command.cpp @@ -9,7 +9,7 @@ namespace NConsoleClient { bool TLeafCommand::Prompt(TConfig& config) { Y_UNUSED(config); if (Dangerous && !config.AssumeYes) { - return AskPrompt("This command may damage your cluster, do you want to conitnue?", false); + return AskPrompt("This command may damage your cluster, do you want to continue?", false); } return true; |
