diff --git a/wp-content/themes/twentyseventeen/functions.php b/wp-content/themes/twentyseventeen/functions.php index 2ea3bc4a73..47bacd3c8a 100644 --- a/wp-content/themes/twentyseventeen/functions.php +++ b/wp-content/themes/twentyseventeen/functions.php @@ -249,7 +249,7 @@ function twentyseventeen_content_width() { * * @since Twenty Seventeen 1.0 * - * @param $content_width integer + * @param int $content_width Content width in pixels. */ $GLOBALS['content_width'] = apply_filters( 'twentyseventeen_content_width', $content_width ); } diff --git a/wp-content/themes/twentyseventeen/inc/color-patterns.php b/wp-content/themes/twentyseventeen/inc/color-patterns.php index 578f3aba77..655256afbe 100644 --- a/wp-content/themes/twentyseventeen/inc/color-patterns.php +++ b/wp-content/themes/twentyseventeen/inc/color-patterns.php @@ -18,7 +18,7 @@ function twentyseventeen_custom_colors_css() { * * @since Twenty Seventeen 1.0 * - * @param $saturation integer + * @param int $saturation Color saturation level. */ $saturation = absint( apply_filters( 'twentyseventeen_custom_colors_saturation', 50 ) ); $reduced_saturation = ( .8 * $saturation ) . '%'; diff --git a/wp-content/themes/twentyseventeen/inc/icon-functions.php b/wp-content/themes/twentyseventeen/inc/icon-functions.php index dc423ee46d..b73f2a47a9 100644 --- a/wp-content/themes/twentyseventeen/inc/icon-functions.php +++ b/wp-content/themes/twentyseventeen/inc/icon-functions.php @@ -212,7 +212,7 @@ function twentyseventeen_social_links_icons() { * * @since Twenty Seventeen 1.0 * - * @param array $social_links_icons + * @param array $social_links_icons Array of social links icons. */ return apply_filters( 'twentyseventeen_social_links_icons', $social_links_icons ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index bceba31cc5..202c00ce1a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39732'; +$wp_version = '4.8-alpha-39733'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.