From f8ea803eb43460b630773cd43639c57f7684118a Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 13 Oct 2019 02:53:54 -0400 Subject: [PATCH] spelling: exclude --- src/node/api.mjs | 6 +++--- src/node/config/excludedOperations.mjs | 2 +- src/node/config/scripts/generateNodeIndex.mjs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/node/api.mjs b/src/node/api.mjs index f03d45b6..fca29dd8 100644 --- a/src/node/api.mjs +++ b/src/node/api.mjs @@ -12,7 +12,7 @@ import NodeDish from "./NodeDish.mjs"; import NodeRecipe from "./NodeRecipe.mjs"; import OperationConfig from "../core/config/OperationConfig.json"; import { sanitise, removeSubheadingsFromArray, sentenceToCamelCase } from "./apiUtils.mjs"; -import ExludedOperationError from "../core/errors/ExcludedOperationError.mjs"; +import ExcludedOperationError from "../core/errors/ExcludedOperationError.mjs"; /** @@ -320,12 +320,12 @@ export function bake() { * Explain that the given operation is not included in the Node.js version. * @param {String} name - name of operation */ -export function _explainExludedFunction(name) { +export function _explainExcludedFunction(name) { /** * Throw new error type with useful message. */ const func = () => { - throw new ExludedOperationError(`Sorry, the ${name} operation is not available in the Node.js version of CyberChef.`); + throw new ExcludedOperationError(`Sorry, the ${name} operation is not available in the Node.js version of CyberChef.`); }; // Add opName prop so NodeRecipe can handle it, just like wrap does. func.opName = name; diff --git a/src/node/config/excludedOperations.mjs b/src/node/config/excludedOperations.mjs index f9873eaf..9359475d 100644 --- a/src/node/config/excludedOperations.mjs +++ b/src/node/config/excludedOperations.mjs @@ -1,5 +1,5 @@ /** - * Operations to exlude from the Node API + * Operations to exclude from the Node API * * @author d98762656 [d98762625@gmail.com] * @copyright Crown Copyright 2018 diff --git a/src/node/config/scripts/generateNodeIndex.mjs b/src/node/config/scripts/generateNodeIndex.mjs index 391cd6e9..b65b7d3c 100644 --- a/src/node/config/scripts/generateNodeIndex.mjs +++ b/src/node/config/scripts/generateNodeIndex.mjs @@ -39,7 +39,7 @@ let code = `/** import NodeDish from "./NodeDish.mjs"; -import { _wrap, help, bake, _explainExludedFunction } from "./api.mjs"; +import { _wrap, help, bake, _explainExcludedFunction } from "./api.mjs"; import File from "./File.mjs"; import { OperationError, DishError, ExcludedOperationError } from "../core/errors/index"; import { @@ -70,7 +70,7 @@ includedOperations.forEach((op) => { }); excludedOperations.forEach((op) => { - code += ` "${decapitalise(op)}": _explainExludedFunction("${op}"),\n`; + code += ` "${decapitalise(op)}": _explainExcludedFunction("${op}"),\n`; }); code += ` };