From cc477493efd00b9462ff3ef7735a6497f71cb8a9 Mon Sep 17 00:00:00 2001 From: Alex Browne Date: Tue, 15 Mar 2016 13:37:53 -0700 Subject: [PATCH] Version 0.5.0 --- examples/fp.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/fp.md b/examples/fp.md index 9fe6d8e..9df2501 100644 --- a/examples/fp.md +++ b/examples/fp.md @@ -1,4 +1,4 @@ -

map :: (a -> b) -> [a] -> [b]

+

map :: (a -> b) -> [a] -> [b]

Transforms a list of elements of type `a` into a list of elements of type `b` using the provided function of type `a -> b`. @@ -8,7 +8,7 @@ of type `b` using the provided function of type `a -> b`. ['1', '2', '3', '4', '5'] ``` -

filter :: (a -> Boolean) -> [a] -> [a]

+

filter :: (a -> Boolean) -> [a] -> [a]

Returns the list of elements which satisfy the provided predicate. diff --git a/package.json b/package.json index cb46b32..b52eaba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "transcribe", - "version": "0.4.0", + "version": "0.5.0", "description": "Generate Markdown documentation from code comments", "license": "MIT", "homepage": "https://github.com/plaid/transcribe",