Procházet zdrojové kódy

Fix dangling comma.

Maciej Gołaszewski před 5 roky
rodič
revize
b35f01186b

+ 1 - 1
packages/ckeditor5-highlight/docs/_snippets/features/custom-highlight-colors-variables.js

@@ -48,7 +48,7 @@ ClassicEditor
 					title: 'Red pen',
 					color: 'var(--ck-highlight-pen-red)',
 					type: 'pen'
-				},
+				}
 			]
 		}
 	} )

+ 1 - 1
packages/ckeditor5-highlight/docs/_snippets/features/custom-highlight-options.js

@@ -41,7 +41,7 @@ ClassicEditor
 					title: 'Red pen',
 					color: 'var(--ck-highlight-pen-red)',
 					type: 'pen'
-				},
+				}
 			]
 		}
 	} )

+ 1 - 1
packages/ckeditor5-highlight/tests/highlightui.js

@@ -110,7 +110,7 @@ describe( 'HighlightUI', () => {
 				'var(--ck-highlight-pen-red)',
 				'var(--ck-highlight-pen-green)',
 				undefined,
-				'',
+				''
 			] );
 		} );