Skip to content

Commit

Permalink
[Docs] group-exports: fix syntax highlighting
Browse files Browse the repository at this point in the history
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
  • Loading branch information
devinrhode2 committed Jan 31, 2023
1 parent 87a6096 commit 89f61b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rules/group-exports.md
Expand Up @@ -62,7 +62,7 @@ test.another = true
module.exports = test
```

```flow js
```ts
const first = true;
type firstType = boolean

Expand Down Expand Up @@ -105,7 +105,7 @@ module.exports.first = true
module.exports.second = true
```

```flow js
```ts
type firstType = boolean
type secondType = any

Expand Down

0 comments on commit 89f61b9

Please sign in to comment.