From 111546ad1af7a4edd52750822347c3fcd85b3e40 Mon Sep 17 00:00:00 2001 From: d98762625 Date: Fri, 6 Sep 2019 12:26:24 +0100 Subject: [PATCH] update function comments --- src/node/NodeRecipe.mjs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/node/NodeRecipe.mjs b/src/node/NodeRecipe.mjs index 70e3670b..b623f611 100644 --- a/src/node/NodeRecipe.mjs +++ b/src/node/NodeRecipe.mjs @@ -43,9 +43,8 @@ class NodeRecipe { } else { throw new TypeError("Inputted function not a Chef operation."); } - // CASE: op with configuration + // CASE: op, maybe with configuration } else if (ing.op) { - // Return op and args pair for opList item. const sanitisedOp = this._validateIngredient(ing.op); if (ing.args) { return {op: sanitisedOp, args: ing.args};