From 30f0b1c30df424f8e4b51a1c9e93fca151a58b31 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 3 Nov 2018 22:38:12 +0900 Subject: Add missing semicolons --- src/mfm/parse/elements/inline-code.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mfm/parse/elements/inline-code.ts') 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) { -- cgit v1.2.3-freya