From 1bf52442604b9ea725c825da0f6153d64f37c33d Mon Sep 17 00:00:00 2001 From: DaanV2 Date: Fri, 28 Oct 2022 15:05:01 +0200 Subject: [PATCH] Updated --- src/MolangData/General.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MolangData/General.ts b/src/MolangData/General.ts index 1bc1834..dc04c11 100644 --- a/src/MolangData/General.ts +++ b/src/MolangData/General.ts @@ -192,7 +192,7 @@ export namespace General { documentation: "Requires at least 3 arguments. Evaluates the first argument, then returns 1.0 if all of the following arguments evaluate to the same value as the first. Otherwise it returns 0.0.", parameters: [ - { id: "evualate", documentation: "The value to evualate" }, + { id: "evaluate", documentation: "The value to evaluate" }, { id: "first", documentation: "The first value to compare" }, { id: "second", documentation: "The first value to compare" }, ], @@ -216,7 +216,7 @@ export namespace General { documentation: "Requires at least 3 arguments. Evaluates the first argument, then returns 1.0 if any of the following arguments evaluate to the same value as the first. Otherwise it returns 0.0.", parameters: [ - { id: "evualate", documentation: "The value to evualate" }, + { id: "evaluate", documentation: "The value to evaluate" }, { id: "first", documentation: "The first value to compare" }, { id: "second", documentation: "The first value to compare" }, ], @@ -532,7 +532,7 @@ export namespace General { documentation: "Requires 3 numerical arguments: some value, a minimum, and a maximum. If the first argument is between the minimum and maximum (inclusive), returns 1.0. Otherwise returns 0.0.", parameters: [ - { id: "evualate", documentation: "The value to evualate" }, + { id: "evaluate", documentation: "The value to evaluate" }, { id: "minimum", documentation: "The first value to compare, inclusive",