From 89f61b97e07700ea1a5345a7be492eb8fb712510 Mon Sep 17 00:00:00 2001 From: Devin Rhode Date: Tue, 31 Jan 2023 10:12:37 -0600 Subject: [PATCH] [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 --- docs/rules/group-exports.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rules/group-exports.md b/docs/rules/group-exports.md index c5a23cd218..67e76de2fe 100644 --- a/docs/rules/group-exports.md +++ b/docs/rules/group-exports.md @@ -62,7 +62,7 @@ test.another = true module.exports = test ``` -```flow js +```ts const first = true; type firstType = boolean @@ -105,7 +105,7 @@ module.exports.first = true module.exports.second = true ``` -```flow js +```ts type firstType = boolean type secondType = any