From 6110eb0eace7f914c43ce27a38d54b3da63db61d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Szcz=C4=99=C5=9Bniak?= Date: Thu, 19 Dec 2024 11:24:19 +0100 Subject: [PATCH] Fixed properly closing brackets in styling table snippet. --- packages/ckeditor5-table/docs/features/tables-styling.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/ckeditor5-table/docs/features/tables-styling.md b/packages/ckeditor5-table/docs/features/tables-styling.md index e7a2cf738f6..0d5f550fc5c 100644 --- a/packages/ckeditor5-table/docs/features/tables-styling.md +++ b/packages/ckeditor5-table/docs/features/tables-styling.md @@ -190,15 +190,15 @@ const tableConfig = { width: '550px', height: '450px' }, - // The default styles for table cells in the editor. - // They should be synchronized with the content styles. + }, + // The default styles for table cells in the editor. + // They should be synchronized with the content styles. tableCellProperties: { defaultProperties: { horizontalAlignment: 'center', verticalAlignment: 'bottom', padding: '10px' } - } } } };