Skip to content

Commit

Permalink
docs: highlight the delay operator (#6222)
Browse files Browse the repository at this point in the history
  • Loading branch information
santoshyadavdev committed Apr 30, 2021
1 parent dbfc1c4 commit 70188fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs_app/content/guide/operators.md
Expand Up @@ -68,7 +68,7 @@ import { interval } from 'rxjs';
const observable = interval(1000 /* number of milliseconds */);
```

See the list of [all static creation operators here](#creation-operators-list).
See the list of all static creation operators [here](#creation-operators-list).

## Higher-order Observables

Expand Down Expand Up @@ -349,4 +349,4 @@ Note that you must
2. implement a "teardown" function that cleans up when the Observable completes (in this case by unsubscribing and clearing any pending timeouts).
3. return that teardown function from the function passed to the Observable constructor.

Of course, this is only an example; the `delay()` operator [already exists](/api/operators/delay).
Of course, this is only an example; the [`delay()`](/api/operators/delay) operator already exists.

0 comments on commit 70188fe

Please sign in to comment.