diff --git a/snippets/unary.md b/snippets/unary.md index ed6a66e0a..0e154aa80 100644 --- a/snippets/unary.md +++ b/snippets/unary.md @@ -1,6 +1,6 @@ --- title: unary -tags: adapter,function,intermediate +tags: function,beginner --- Creates a function that accepts up to one argument, ignoring any additional arguments. @@ -13,4 +13,4 @@ const unary = fn => val => fn(val); ```js ['6', '8', '10'].map(unary(parseInt)); // [6, 8, 10] -``` \ No newline at end of file +```