Procházet zdrojové kódy

Fix dangling comma.

Maciej Gołaszewski před 6 roky
rodič
revize
b2d5f604c1

+ 1 - 1
packages/ckeditor5-markdown-gfm/tests/gfmdataprocessor/escaping.js

@@ -20,7 +20,7 @@ const testCases = {
 	'peroid': { test: '\\.', result: '.' },
 	'exclamation mark': { test: '\\!', result: '!' },
 	'plus': { test: '\\+', result: '+' },
-	'minus': { test: '\\-', result: '-' },
+	'minus': { test: '\\-', result: '-' }
 };
 
 describe( 'GFMDataProcessor', () => {