Skip to content

Commit 89f61b9

Browse files
authored
[Docs] group-exports: fix syntax highlighting
These snippets didn't have any syntax highlighting: First chunk: https://share.cleanshot.com/spXGCRRGJkpBsLGLPk7k Second chunk: https://share.cleanshot.com/vhRsmDnxCd7PZfFfLLhh I searched codebase for any other ```flow js code blocks, but there were only these two from this file: https://share.cleanshot.com/xY7W9TJTXPrJ8ngtf6Kr
1 parent 87a6096 commit 89f61b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/rules/group-exports.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ test.another = true
6262
module.exports = test
6363
```
6464

65-
```flow js
65+
```ts
6666
const first = true;
6767
type firstType = boolean
6868

@@ -105,7 +105,7 @@ module.exports.first = true
105105
module.exports.second = true
106106
```
107107

108-
```flow js
108+
```ts
109109
type firstType = boolean
110110
type secondType = any
111111

0 commit comments

Comments
 (0)