Explorar el Código

update function comments

d98762625 hace 5 años
padre
commit
111546ad1a
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      src/node/NodeRecipe.mjs

+ 1 - 2
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};