diff --git a/packages/wrangler/src/__tests__/kv.test.ts b/packages/wrangler/src/__tests__/kv.test.ts index 5ead136c290b..d9a39e934c7e 100644 --- a/packages/wrangler/src/__tests__/kv.test.ts +++ b/packages/wrangler/src/__tests__/kv.test.ts @@ -570,7 +570,7 @@ describe("wrangler", () => { --metadata Arbitrary JSON that is associated with a key [string] --path Read value from the file at a given path [string] --local Interact with local storage [boolean] - --persist-to Directory for local persistance [string]" + --persist-to Directory for local persistence [string]" `); expect(std.err).toMatchInlineSnapshot(` "X [ERROR] Not enough non-option arguments: got 0, need at least 1 @@ -612,7 +612,7 @@ describe("wrangler", () => { --metadata Arbitrary JSON that is associated with a key [string] --path Read value from the file at a given path [string] --local Interact with local storage [boolean] - --persist-to Directory for local persistance [string]" + --persist-to Directory for local persistence [string]" `); expect(std.err).toMatchInlineSnapshot(` "X [ERROR] Exactly one of the arguments binding and namespace-id is required @@ -654,7 +654,7 @@ describe("wrangler", () => { --metadata Arbitrary JSON that is associated with a key [string] --path Read value from the file at a given path [string] --local Interact with local storage [boolean] - --persist-to Directory for local persistance [string]" + --persist-to Directory for local persistence [string]" `); expect(std.err).toMatchInlineSnapshot(` "X [ERROR] Arguments binding and namespace-id are mutually exclusive @@ -696,7 +696,7 @@ describe("wrangler", () => { --metadata Arbitrary JSON that is associated with a key [string] --path Read value from the file at a given path [string] --local Interact with local storage [boolean] - --persist-to Directory for local persistance [string]" + --persist-to Directory for local persistence [string]" `); expect(std.err).toMatchInlineSnapshot(` "X [ERROR] Exactly one of the arguments value and path is required @@ -738,7 +738,7 @@ describe("wrangler", () => { --metadata Arbitrary JSON that is associated with a key [string] --path Read value from the file at a given path [string] --local Interact with local storage [boolean] - --persist-to Directory for local persistance [string]" + --persist-to Directory for local persistence [string]" `); expect(std.err).toMatchInlineSnapshot(` "X [ERROR] Arguments value and path are mutually exclusive @@ -1114,7 +1114,7 @@ describe("wrangler", () => { --preview Interact with a preview namespace [boolean] [default: false] --text Decode the returned value as a utf8 string [boolean] [default: false] --local Interact with local storage [boolean] - --persist-to Directory for local persistance [string]" + --persist-to Directory for local persistence [string]" `); expect(std.err).toMatchInlineSnapshot(` "X [ERROR] Not enough non-option arguments: got 0, need at least 1 @@ -1151,7 +1151,7 @@ describe("wrangler", () => { --preview Interact with a preview namespace [boolean] [default: false] --text Decode the returned value as a utf8 string [boolean] [default: false] --local Interact with local storage [boolean] - --persist-to Directory for local persistance [string]" + --persist-to Directory for local persistence [string]" `); expect(std.err).toMatchInlineSnapshot(` "X [ERROR] Exactly one of the arguments binding and namespace-id is required @@ -1189,7 +1189,7 @@ describe("wrangler", () => { --preview Interact with a preview namespace [boolean] [default: false] --text Decode the returned value as a utf8 string [boolean] [default: false] --local Interact with local storage [boolean] - --persist-to Directory for local persistance [string]" + --persist-to Directory for local persistence [string]" `); expect(std.err).toMatchInlineSnapshot(` "X [ERROR] Arguments binding and namespace-id are mutually exclusive diff --git a/packages/wrangler/src/kv/index.ts b/packages/wrangler/src/kv/index.ts index 5e3a16b428cc..8c91ad5707cb 100644 --- a/packages/wrangler/src/kv/index.ts +++ b/packages/wrangler/src/kv/index.ts @@ -235,7 +235,7 @@ export const kvKey = (kvYargs: CommonYargsArgv) => { }) .option("persist-to", { type: "string", - describe: "Directory for local persistance", + describe: "Directory for local persistence", }) .check(demandOneOfOption("value", "path")); }, @@ -332,7 +332,7 @@ export const kvKey = (kvYargs: CommonYargsArgv) => { }) .option("persist-to", { type: "string", - describe: "Directory for local persistance", + describe: "Directory for local persistence", }); }, async ({ prefix, ...args }) => { @@ -410,7 +410,7 @@ export const kvKey = (kvYargs: CommonYargsArgv) => { }) .option("persist-to", { type: "string", - describe: "Directory for local persistance", + describe: "Directory for local persistence", }); }, async ({ key, ...args }) => { @@ -486,7 +486,7 @@ export const kvKey = (kvYargs: CommonYargsArgv) => { }) .option("persist-to", { type: "string", - describe: "Directory for local persistance", + describe: "Directory for local persistence", }); }, async ({ key, ...args }) => { @@ -552,7 +552,7 @@ export const kvBulk = (kvYargs: CommonYargsArgv) => { }) .option("persist-to", { type: "string", - describe: "Directory for local persistance", + describe: "Directory for local persistence", }); }, async ({ filename, ...args }) => { @@ -681,7 +681,7 @@ export const kvBulk = (kvYargs: CommonYargsArgv) => { }) .option("persist-to", { type: "string", - describe: "Directory for local persistance", + describe: "Directory for local persistence", }); }, async ({ filename, ...args }) => { diff --git a/packages/wrangler/src/r2/index.ts b/packages/wrangler/src/r2/index.ts index 1a407cab0299..7b1a92b05244 100644 --- a/packages/wrangler/src/r2/index.ts +++ b/packages/wrangler/src/r2/index.ts @@ -59,7 +59,7 @@ export function r2(r2Yargs: CommonYargsArgv) { }) .option("persist-to", { type: "string", - describe: "Directory for local persistance", + describe: "Directory for local persistence", }); }, async (objectGetYargs) => { @@ -171,7 +171,7 @@ export function r2(r2Yargs: CommonYargsArgv) { }) .option("persist-to", { type: "string", - describe: "Directory for local persistance", + describe: "Directory for local persistence", }); }, async (objectPutYargs) => { @@ -276,7 +276,7 @@ export function r2(r2Yargs: CommonYargsArgv) { }) .option("persist-to", { type: "string", - describe: "Directory for local persistance", + describe: "Directory for local persistence", }); }, async (args) => {