mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-12 09:11:37 -04:00
Fixed some typos
This commit is contained in:
parent
7971ea6c9d
commit
df6a60a44a
31 changed files with 36 additions and 36 deletions
|
@ -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
|
||||
|
|
|
@ -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 += ` };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue