Skip to content

Commit

Permalink
Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchambers committed Apr 6, 2018
1 parent ebd1eeb commit e893175
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015 Plaid Technologies, Inc.
Copyright (c) 2018 Plaid Technologies, Inc.

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
4 changes: 2 additions & 2 deletions examples/fp.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### <a name="map" href="https://github.com/plaid/transcribe/blob/v1.0.0/examples/fp.js#L4">`map :: (a -⁠> b) -⁠> [a] -⁠> [b]`</a>
### <a name="map" href="https://github.com/plaid/transcribe/blob/v1.1.0/examples/fp.js#L3">`map :: (a -⁠> b) -⁠> Array a -⁠> Array b`</a>

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

### <a name="filter" href="https://github.com/plaid/transcribe/blob/v1.0.0/examples/fp.js#L24">`filter :: (a -⁠> Boolean) -⁠> [a] -⁠> [a]`</a>
### <a name="filter" href="https://github.com/plaid/transcribe/blob/v1.1.0/examples/fp.js#L23">`filter :: (a -⁠> Boolean) -⁠> Array a -⁠> Array a`</a>

Returns the list of elements which satisfy the provided predicate.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "transcribe",
"version": "1.0.0",
"version": "1.1.0",
"description": "Generate Markdown documentation from code comments",
"license": "MIT",
"homepage": "https://github.com/plaid/transcribe",
Expand Down

0 comments on commit e893175

Please sign in to comment.