mirror of
https://github.com/gchq/CyberChef
synced 2025-12-23 03:33:24 +00:00
Fixed some typos
This commit is contained in:
@@ -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 += ` };
|
||||
|
||||
Reference in New Issue
Block a user