浏览代码

update function comments

d98762625 5 年之前
父节点
当前提交
111546ad1a
共有 1 个文件被更改,包括 1 次插入2 次删除
  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};