diff options
Diffstat (limited to 'src/mfm/parse/elements/inline-code.ts')
| -rw-r--r-- | src/mfm/parse/elements/inline-code.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mfm/parse/elements/inline-code.ts b/src/mfm/parse/elements/inline-code.ts index e4ab499584..efacd734cb 100644 --- a/src/mfm/parse/elements/inline-code.ts +++ b/src/mfm/parse/elements/inline-code.ts @@ -5,10 +5,10 @@ import genHtml from '../core/syntax-highlighter'; export type TextElementInlineCode = { - type: 'inline-code' - content: string - code: string - html: string + type: 'inline-code'; + content: string; + code: string; + html: string; }; export default function(text: string) { |