Skip to content

Commit

Permalink
remove deprecation notices from stream.map and stream.ap
Browse files Browse the repository at this point in the history
  • Loading branch information
Einar Norðfjörð committed Feb 12, 2018
1 parent d3c0dc7 commit 11513ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ var evenNumbers = numbers
.pipe(filter(isEven));
```
### stream.map(f) __Deprecated__
### stream.map(f)
Returns a new stream identical to the original except every
value will be passed through `f`.
Expand All @@ -667,7 +667,7 @@ var numbers = flyd.stream(0);
var squaredNumbers = numbers.map(function(n) { return n*n; });
```
### stream1.ap(stream2) __Deprecated__
### stream1.ap(stream2)
`stream1` must be a stream of functions.
Expand Down

0 comments on commit 11513ae

Please sign in to comment.