Skip to content

Commit 4a1b8eb

Browse files
Twenty Ten: Add missing variable names to some @param tags.
Follow-up to [25627]. Props huzaifaalmesbah. See #64224. git-svn-id: https://develop.svn.wordpress.org/trunk@61314 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 8b0250c commit 4a1b8eb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/wp-content/themes/twentyten/author.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
*
4646
* @since Twenty Ten 1.0
4747
*
48-
* @param int The height and width avatar dimensions in pixels. Default 60.
48+
* @param int $size The height and width avatar dimensions in pixels. Default 60.
4949
*/
5050
$author_bio_avatar_size = apply_filters( 'twentyten_author_bio_avatar_size', 60 );
5151
echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );

src/wp-content/themes/twentyten/loop-attachment.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,15 +127,15 @@
127127
*
128128
* @since Twenty Ten 1.0
129129
*
130-
* @param int The default attachment width in pixels. Default 900.
130+
* @param int $width The default attachment width in pixels. Default 900.
131131
*/
132132
$attachment_width = apply_filters( 'twentyten_attachment_size', 900 );
133133
/**
134134
* Filters the Twenty Ten default attachment height.
135135
*
136136
* @since Twenty Ten 1.0
137137
*
138-
* @param int The default attachment height in pixels. Default 900.
138+
* @param int $height The default attachment height in pixels. Default 900.
139139
*/
140140
$attachment_height = apply_filters( 'twentyten_attachment_height', 900 );
141141
// Filterable image width with, essentially, no limit for image height.

0 commit comments

Comments
 (0)