We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 213794b commit 04b9724Copy full SHA for 04b9724
docs/rules/no-async-subscribe.md
@@ -8,7 +8,7 @@ Examples of **incorrect** code for this rule:
8
9
```ts
10
import { of } from "rxjs";
11
-of(42).subscribe(async () => {console.log(value));
+of(42).subscribe(async () => console.log(value));
12
```
13
14
Examples of **correct** code for this rule:
@@ -20,4 +20,4 @@ of(42).subscribe(() => console.log(value));
20
21
## Options
22
23
-This rule has no options.
+This rule has no options.
0 commit comments