Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: description for kv:bulk delete <filename> #257

Merged
merged 1 commit into from
Jan 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/serious-coins-provide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"wrangler": patch
---

fix: description for `kv:bulk delete <filename>`

The description for the `kv:bulk delete` command was wrong, it was probably copied earlier from the `kv:bulk put` command. This PR fixes the mistake.
4 changes: 2 additions & 2 deletions packages/wrangler/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1855,11 +1855,11 @@ export async function main(argv: string[]): Promise<void> {
)
.command(
"delete <filename>",
"Upload multiple key-value pairs to a namespace",
"Delete multiple key-value pairs from a namespace",
(yargs) => {
return yargs
.positional("filename", {
describe: `The JSON file of key-value pairs to upload, in form ["key1", "key2", ...]`,
describe: `The JSON file of keys to delete, in the form ["key1", "key2", ...]`,
type: "string",
})
.option("binding", {
Expand Down