diff --git a/examples/fp.md b/examples/fp.md
index 98db9c9..2b240a8 100644
--- a/examples/fp.md
+++ b/examples/fp.md
@@ -1,4 +1,4 @@
-### [`map :: (a -> b) -> [a] -> [b]`](https://github.com/plaid/transcribe/blob/v0.1.0/examples/fp.js#L4)
+
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]`](https://github.com/plaid/transcribe/blob/v0.1.0/examples/fp.js#L24)
+
Returns the list of elements which satisfy the provided predicate.
diff --git a/package.json b/package.json
index 2990026..7a847f5 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "transcribe",
- "version": "0.1.0",
+ "version": "0.2.0",
"description": "Generate Markdown documentation from code comments",
"license": "MIT",
"homepage": "https://github.com/plaid/transcribe",