Skip to content

Commit

Permalink
chore: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
cartant committed Jun 17, 2020
1 parent 727fe88 commit e127370
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs_app/content/deprecations/scheduler-argument.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ scheduled(of([1,2,3]), asyncScheduler).subscribe(x => console.log(x));

### Refactoring of `merge`, `concat`, `startWith` and `endWith`

In case you used to pass a scheduler argument to one of these operators you propably had code like this:
In case you used to pass a scheduler argument to one of these operators you probably had code like this:

```ts
import { concat, of, asyncScheduler } from 'rxjs';
Expand Down
2 changes: 1 addition & 1 deletion docs_app/content/guide/higher-order-observables.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const fileObservable = urlObservable.pipe(

`http.get()` returns an Observable for each URL. Now you have an Observable *of* Observables, a higher-order Observable.

But how do you work with a higher-order Observable? Typically, by _flattening_: by converting a higher-order Obser vable into an ordinary Observable. For example:
But how do you work with a higher-order Observable? Typically, by _flattening_: by converting a higher-order Observable into an ordinary Observable. For example:

```ts
const fileObservable = urlObservable.pipe(
Expand Down

0 comments on commit e127370

Please sign in to comment.