From 27ac620c7a2855cfd885f7993f1b12cf7d576c20 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 19 Jan 2024 18:24:36 +0000 Subject: [PATCH] Twenty Twenty: Add missing comma in `twentytwenty_classic_editor_styles()`. This resolves a WPCS error: {{{ There should be a comma after the last array item in a multi-line array. }}} Follow-up to [57311]. See #48630. git-svn-id: https://develop.svn.wordpress.org/trunk@57313 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentytwenty/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentytwenty/functions.php b/src/wp-content/themes/twentytwenty/functions.php index 549191f12dccc..2ce8fffb77bac 100644 --- a/src/wp-content/themes/twentytwenty/functions.php +++ b/src/wp-content/themes/twentytwenty/functions.php @@ -461,7 +461,7 @@ function twentytwenty_classic_editor_styles() { $classic_editor_styles = array( '/assets/css/editor-style-classic.css', - '/assets/css/font-inter.css' + '/assets/css/font-inter.css', ); add_editor_style( $classic_editor_styles );