Skip to content

Commit

Permalink
docs: fix typo in lettable operators doc (#2870)
Browse files Browse the repository at this point in the history
  • Loading branch information
devoto13 authored and benlesh committed Sep 26, 2017
1 parent c57eea7 commit febcfc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/lettable-operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Problems with the patched operators for dot-chaining are:

What is a lettable operator? Simply put, a function that can be used with the current `let` operator. It's the origin of the name, for better or worse. A lettable operator is basically any function that returns a function with the signature: `<T, R>(source: Observable<T>) => Observable<R>`.

There is a `pipe` method built into `Observable` now at `Observable.prototype.pipe` that an be used to compose the operators in similar manner to what you're used to with dot-chaining (shown below).
There is a `pipe` method built into `Observable` now at `Observable.prototype.pipe` that сan be used to compose the operators in similar manner to what you're used to with dot-chaining (shown below).

There is also a `pipe` utility function at `rxjs/utils/pipe` that can be used to build reusable lettable operators from other lettable operators.

Expand Down

0 comments on commit febcfc3

Please sign in to comment.