diff --git a/snippets/pipeFunctions.md b/snippets/pipeFunctions.md index 5de1d9d61..2b14b6a85 100644 --- a/snippets/pipeFunctions.md +++ b/snippets/pipeFunctions.md @@ -1,6 +1,6 @@ --- title: pipeFunctions -tags: adapter,function,intermediate +tags: function,intermediate --- Performs left-to-right function composition. @@ -17,4 +17,4 @@ const add5 = x => x + 5; const multiply = (x, y) => x * y; const multiplyAndAdd5 = pipeFunctions(multiply, add5); multiplyAndAdd5(5, 2); // 15 -``` \ No newline at end of file +```