Skip to content

Commit b59b74d

Browse files
committed
[63692] Reverted comments.
1 parent 8cc5973 commit b59b74d

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ function twentyeleven_setup() {
231231
set_post_thumbnail_size( $custom_header_support['width'], $custom_header_support['height'], true );
232232

233233
/*
234-
* Adds Twenty Eleven's custom image sizes.
234+
* Add Twenty Eleven's custom image sizes.
235235
* Used for large feature (header) images.
236236
*/
237237
add_image_size( 'large-feature', $custom_header_support['width'], $custom_header_support['height'], true );

src/wp-content/themes/twentyeleven/showcase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@
208208
if ( $recent->have_posts() ) :
209209
$recent->the_post();
210210

211-
// Sets $more to 0 in order to only get the first part of the post.
211+
// Set $more to 0 in order to only get the first part of the post.
212212
global $more;
213213
$more = 0;
214214

src/wp-content/themes/twentyfourteen/js/slider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
}
139139
}
140140

141-
// Sets up flags to prevent event duplication.
141+
// Set up flags to prevent event duplication.
142142
if ( watchedEvent === '' ) {
143143
watchedEvent = event.type;
144144
}
@@ -190,7 +190,7 @@
190190
slider.featureAnimate( target );
191191
}
192192

193-
// Sets up flags to prevent event duplication.
193+
// Set up flags to prevent event duplication.
194194
if ( watchedEvent === '' ) {
195195
watchedEvent = event.type;
196196
}

src/wp-content/themes/twentyseventeen/assets/js/global.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
}
4545
});
4646

47-
// Sets properties of navigation.
47+
// Set properties of navigation.
4848
function setNavProps() {
4949
navigationHeight = $navigation.height();
5050
navigationOuterHeight = $navigation.outerHeight();
@@ -85,7 +85,7 @@
8585
}
8686
}
8787

88-
// Sets margins of branding in header.
88+
// Set margins of branding in header.
8989
function adjustHeaderHeight() {
9090
if ( 'none' === $menuToggle.css( 'display' ) ) {
9191

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919

2020
/**
21-
* Set up theme defaults and registers support for various WordPress features.
21+
* Sets up theme defaults and registers support for various WordPress features.
2222
*
2323
* Note that this function is hooked into the after_setup_theme hook, which
2424
* runs before the init hook. The init hook is too late for some features, such
@@ -53,7 +53,7 @@ function twentyseventeen_setup() {
5353

5454
add_image_size( 'twentyseventeen-thumbnail-avatar', 100, 100, true );
5555

56-
// Sets the default content width.
56+
// Set the default content width.
5757
$GLOBALS['content_width'] = 525;
5858

5959
// This theme uses wp_nav_menu() in two locations.
@@ -195,7 +195,7 @@ function twentyseventeen_setup() {
195195
'page_for_posts' => '{{blog}}',
196196
),
197197

198-
// Sets the front page section theme mods to the IDs of the core-registered pages.
198+
// Set the front page section theme mods to the IDs of the core-registered pages.
199199
'theme_mods' => array(
200200
'panel_1' => '{{homepage-section}}',
201201
'panel_2' => '{{about}}',

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function twentyseventeen_get_svg( $args = array() ) {
4444
return __( 'Please define an SVG icon filename.', 'twentyseventeen' );
4545
}
4646

47-
// Sets defaults.
47+
// Set defaults.
4848
$defaults = array(
4949
'icon' => '',
5050
'title' => '',
@@ -55,10 +55,10 @@ function twentyseventeen_get_svg( $args = array() ) {
5555
// Parse args.
5656
$args = wp_parse_args( $args, $defaults );
5757

58-
// Sets aria hidden.
58+
// Set aria hidden.
5959
$aria_hidden = ' aria-hidden="true"';
6060

61-
// Sets ARIA.
61+
// Set ARIA.
6262
$aria_labelledby = '';
6363

6464
/*

src/wp-content/themes/twentythirteen/inc/custom-header.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function twentythirteen_custom_header_setup() {
2626
'default-text-color' => '220e10',
2727
'default-image' => '%s/images/headers/circle.png',
2828

29-
// Sets height and width, with a maximum value for the width.
29+
// Set height and width, with a maximum value for the width.
3030
'height' => 230,
3131
'width' => 1600,
3232

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @since Twenty Twelve 1.0
2525
*/
2626

27-
// Sets up the content width value based on the theme's design and stylesheet.
27+
// Set up the content width value based on the theme's design and stylesheet.
2828
if ( ! isset( $content_width ) ) {
2929
$content_width = 625;
3030
}

src/wp-content/themes/twentytwelve/inc/custom-header.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function twentytwelve_custom_header_setup() {
2525
'default-text-color' => '515151',
2626
'default-image' => '',
2727

28-
// Sets height and width, with a maximum value for the width.
28+
// Set height and width, with a maximum value for the width.
2929
'height' => 250,
3030
'width' => 960,
3131
'max-width' => 2000,

src/wp-content/themes/twentytwenty/assets/js/color-calculations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @return {Object} - this
1212
*/
1313
function _twentyTwentyColor( backgroundColor, accentHue ) {
14-
// Sets the object properties.
14+
// Set the object properties.
1515
this.backgroundColor = backgroundColor;
1616
this.accentHue = accentHue;
1717
this.bgColorObj = new Color( backgroundColor );

0 commit comments

Comments
 (0)