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/code.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mfm/parse/elements/code.ts') diff --git a/src/mfm/parse/elements/code.ts b/src/mfm/parse/elements/code.ts index 3c97fc1d99..63a535fc55 100644 --- a/src/mfm/parse/elements/code.ts +++ b/src/mfm/parse/elements/code.ts @@ -5,10 +5,10 @@ import genHtml from '../core/syntax-highlighter'; export type TextElementCode = { - type: 'code' - content: string - code: string - html: string + type: 'code'; + content: string; + code: string; + html: string; }; export default function(text: string) { -- cgit v1.2.3-freya