Skip to content

Commit 4087b49

Browse files
committed
Version 1.1.2
1 parent e2ee780 commit 4087b49

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2018 Plaid Technologies, Inc.
1+
Copyright (c) 2019 Plaid Technologies, Inc.
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation

examples/fp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
### <a name="map" href="https://github.com/plaid/transcribe/blob/v1.1.1/examples/fp.js#L3">`map :: (a -⁠> b) -⁠> Array a -⁠> Array b`</a>
1+
### <a name="map" href="https://github.com/plaid/transcribe/blob/v1.1.2/examples/fp.js#L3">`map :: (a -⁠> b) -⁠> Array a -⁠> Array b`</a>
22

33
Transforms a list of elements of type `a` into a list of elements
44
of type `b` using the provided function of type `a -> b`.
55

66
```javascript
7-
> map(String)([1, 2, 3, 4, 5])
7+
> map (String) ([1, 2, 3, 4, 5])
88
['1', '2', '3', '4', '5']
99
```
1010

11-
### <a name="filter" href="https://github.com/plaid/transcribe/blob/v1.1.1/examples/fp.js#L23">`filter :: (a -⁠> Boolean) -⁠> Array a -⁠> Array a`</a>
11+
### <a name="filter" href="https://github.com/plaid/transcribe/blob/v1.1.2/examples/fp.js#L23">`filter :: (a -⁠> Boolean) -⁠> Array a -⁠> Array a`</a>
1212

1313
Returns the list of elements which satisfy the provided predicate.
1414

1515
```javascript
16-
> filter(function(n) { return n % 2 === 0; })([1, 2, 3, 4, 5])
16+
> filter (function(n) { return n % 2 === 0; }) ([1, 2, 3, 4, 5])
1717
[2, 4]
1818
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "transcribe",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Generate Markdown documentation from code comments",
55
"license": "MIT",
66
"homepage": "https://github.com/plaid/transcribe",

0 commit comments

Comments
 (0)