Skip to content

Commit 7717c9d

Browse files
committed
[63692] Reverted comments.
1 parent b59b74d commit 7717c9d

File tree

14 files changed

+27
-27
lines changed

14 files changed

+27
-27
lines changed

src/wp-content/themes/twentynineteen/sass/_normalize.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ template {
333333
}
334334

335335
/**
336-
* Adds the correct display in IE 10.
336+
* Add the correct display in IE 10.
337337
*/
338338

339339
[hidden] {

src/wp-content/themes/twentynineteen/style-rtl.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2205,7 +2205,7 @@ template {
22052205
}
22062206

22072207
/**
2208-
* Adds the correct display in IE 10.
2208+
* Add the correct display in IE 10.
22092209
*/
22102210
[hidden] {
22112211
display: none;

src/wp-content/themes/twentynineteen/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2205,7 +2205,7 @@ template {
22052205
}
22062206

22072207
/**
2208-
* Adds the correct display in IE 10.
2208+
* Add the correct display in IE 10.
22092209
*/
22102210
[hidden] {
22112211
display: none;

src/wp-content/themes/twentyseventeen/functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ function twentyseventeen_setup() {
203203
'panel_4' => '{{contact}}',
204204
),
205205

206-
// Sets up nav menus for each of the two areas registered in the theme.
206+
// Set up nav menus for each of the two areas registered in the theme.
207207
'nav_menus' => array(
208208
// Assign a menu to the "top" location.
209209
'top' => array(

src/wp-content/themes/twentytwenty/assets/js/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
var twentytwenty = twentytwenty || {};
66

7-
// Sets a default value for scrolled.
7+
// Set a default value for scrolled.
88
twentytwenty.scrolled = 0;
99

1010
// polyfill closest
@@ -476,7 +476,7 @@ twentytwenty.primaryMenu = {
476476
}
477477
});
478478

479-
// Sets focus on current `a` element's parent `li`.
479+
// Set focus on current `a` element's parent `li`.
480480
self.parentElement.classList.add( 'focus' );
481481
// If current element is inside sub-menu find main parent li and add focus.
482482
if ( self.closest( '.menu-item-has-children' ) ) {

src/wp-content/themes/twentytwenty/functions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function twentytwenty_theme_support() {
4646
)
4747
);
4848

49-
// Sets content-width.
49+
// Set content-width.
5050
global $content_width;
5151
if ( ! isset( $content_width ) ) {
5252
$content_width = 580;
@@ -59,7 +59,7 @@ function twentytwenty_theme_support() {
5959
*/
6060
add_theme_support( 'post-thumbnails' );
6161

62-
// Sets post thumbnail size.
62+
// Set post thumbnail size.
6363
set_post_thumbnail_size( 1200, 9999 );
6464

6565
// Add custom image size used in Cover Template.

src/wp-content/themes/twentytwentyone/assets/css/ie.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ summary {
458458
*/
459459

460460
/**
461-
* Adds the correct display in IE 10.
461+
* Add the correct display in IE 10.
462462
*/
463463
template,
464464
[hidden] {
@@ -917,15 +917,15 @@ template,
917917
}
918918

919919
/**
920-
* Sets the default maximum responsive content-width
920+
* Set the default maximum responsive content-width
921921
*/
922922

923923
/**
924-
* Sets the wide maximum responsive content-width
924+
* Set the wide maximum responsive content-width
925925
*/
926926

927927
/**
928-
* Sets the full maximum responsive content-width
928+
* Set the full maximum responsive content-width
929929
*/
930930

931931
/*

src/wp-content/themes/twentytwentyone/assets/js/editor-dark-mode-support.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function twentytwentyoneDarkModeEditorInit( attempt ) {
1919
var container = document.querySelector( '.block-editor__typewriter' ),
2020
maxAttempts = 8;
2121

22-
// Sets the initial attempt if it's undefined.
22+
// Set the initial attempt if it's undefined.
2323
attempt = attempt || 0;
2424

2525
if ( twentytwentyoneIsDarkMode() ) {

src/wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function twentytwentyoneResponsiveEmbeds() {
2222
proportion = parseFloat( iframe.width ) / parseFloat( iframe.height );
2323
// Get the parent element's width.
2424
parentWidth = parseFloat( window.getComputedStyle( iframe.parentElement, null ).width.replace( 'px', '' ) );
25-
// Sets the max-width & height.
25+
// Set the max-width & height.
2626
iframe.style.maxWidth = '100%';
2727
iframe.style.maxHeight = Math.round( parentWidth / proportion ).toString() + 'px';
2828
}

src/wp-content/themes/twentytwentyone/assets/sass/03-generic/normalize.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ template {
342342
}
343343

344344
/**
345-
* Adds the correct display in IE 10.
345+
* Add the correct display in IE 10.
346346
*/
347347

348348
[hidden] {

0 commit comments

Comments
 (0)