Skip to content

Commit 04b9724

Browse files
authored
Update no-async-subscribe.md (#68)
1 parent 213794b commit 04b9724

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/rules/no-async-subscribe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Examples of **incorrect** code for this rule:
88

99
```ts
1010
import { of } from "rxjs";
11-
of(42).subscribe(async () => {console.log(value));
11+
of(42).subscribe(async () => console.log(value));
1212
```
1313

1414
Examples of **correct** code for this rule:
@@ -20,4 +20,4 @@ of(42).subscribe(() => console.log(value));
2020

2121
## Options
2222

23-
This rule has no options.
23+
This rule has no options.

0 commit comments

Comments
 (0)