Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.

Commit 111bf5f

Browse files
authored
Merge pull request #38 from CheshireSwift/patch-1
Correct pipeline example in README
2 parents 6f0dc43 + 9fffbbe commit 111bf5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const y = f3(f2(f1(x0)))
3838
**Signature:** `pipeline (...functions) → function`
3939

4040
```javascript
41-
const fn = pipe(f0, f1, f2, f3)
41+
const fn = pipeline(f0, f1, f2, f3)
4242
```
4343

4444
is equivalent to

0 commit comments

Comments
 (0)