Skip to content

Commit

Permalink
docs: Fix heading levels (#6933)
Browse files Browse the repository at this point in the history
Markdown headings cannot be too high-level lest they render incorrectly
in the docs app.
  • Loading branch information
camsteffen committed Apr 19, 2022
1 parent 9948dc2 commit 9e15d75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/internal/Observable.ts
Expand Up @@ -121,7 +121,7 @@ export class Observable<T> implements Subscribable<T> {
* by default emits all its values synchronously. Always check documentation for how given Observable
* will behave when subscribed and if its default behavior can be modified with a `scheduler`.
*
* ## Examples
* #### Examples
*
* Subscribe with an {@link guide/observer Observer}
*
Expand Down Expand Up @@ -261,7 +261,7 @@ export class Observable<T> implements Subscribable<T> {
* this situation, look into adding something like {@link timeout}, {@link take},
* {@link takeWhile}, or {@link takeUntil} amongst others.
*
* ## Example
* #### Example
*
* ```ts
* import { interval, take } from 'rxjs';
Expand Down

0 comments on commit 9e15d75

Please sign in to comment.