From 3939f38b670f023fc36c45e2bf2e3665a21ae499 Mon Sep 17 00:00:00 2001 From: Gregory Cornelius Date: Fri, 30 Apr 2021 11:22:33 -0400 Subject: [PATCH] Fix typos --- packages/cli/commands/customObject/schema/create.js | 2 +- packages/cli/commands/customObject/schema/update.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/commands/customObject/schema/create.js b/packages/cli/commands/customObject/schema/create.js index ac441e189..fecb6a95f 100644 --- a/packages/cli/commands/customObject/schema/create.js +++ b/packages/cli/commands/customObject/schema/create.js @@ -48,7 +48,7 @@ exports.handler = async options => { try { if (isConfigFlagEnabled(ConfigFlags.USE_CUSTOM_OBJECT_HUBFILE)) { await createSchemaFromHubFile(accountId, filePath); - logger.success(`Your schema has been created in acount "${accountId}"`); + logger.success(`Your schema has been created in account "${accountId}"`); } else { const res = await createSchema(accountId, filePath); logger.success( diff --git a/packages/cli/commands/customObject/schema/update.js b/packages/cli/commands/customObject/schema/update.js index 4d38bfe2b..13d822629 100644 --- a/packages/cli/commands/customObject/schema/update.js +++ b/packages/cli/commands/customObject/schema/update.js @@ -48,7 +48,7 @@ exports.handler = async options => { try { if (isConfigFlagEnabled(ConfigFlags.USE_CUSTOM_OBJECT_HUBFILE)) { await updateSchemaFromHubFile(accountId, filePath); - logger.success(`Your schema has been updated in acount "${accountId}"`); + logger.success(`Your schema has been updated in account "${accountId}"`); } else { const res = await updateSchema(accountId, name, filePath); logger.success(