Skip to content

Commit

Permalink
Twenty Twenty: Add missing comma in `twentytwenty_classic_editor_styl…
Browse files Browse the repository at this point in the history
…es()`.

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
  • Loading branch information
SergeyBiryukov committed Jan 19, 2024
1 parent d17afcc commit 27ac620
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wp-content/themes/twentytwenty/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down

0 comments on commit 27ac620

Please sign in to comment.