diff --git a/wp-includes/class-wp-theme.php b/wp-includes/class-wp-theme.php index dee2fe7c4b..ad3b1ec242 100644 --- a/wp-includes/class-wp-theme.php +++ b/wp-includes/class-wp-theme.php @@ -437,7 +437,7 @@ final class WP_Theme implements ArrayAccess { * translated data. We are doing so now as it is safe to do. However, as * Name and Title could have been used as the key for get_themes(), both remain * untranslated for back compatibility. This means that ['Name'] is not ideal, - * and care should be taken to use $theme->display('Name') to get a properly + * and care should be taken to use `$theme::display( 'Name' )` to get a properly * translated header. * * @param mixed $offset diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php index 19d16f3cd9..fe9ab0a64f 100644 --- a/wp-includes/script-loader.php +++ b/wp-includes/script-loader.php @@ -35,7 +35,7 @@ require( ABSPATH . WPINC . '/functions.wp-styles.php' ); * Register all WordPress scripts. * * Localizes some of them. - * args order: $scripts->add( 'handle', 'url', 'dependencies', 'query-string', 1 ); + * args order: `$scripts->add( 'handle', 'url', 'dependencies', 'query-string', 1 );` * when last arg === 1 queues the script for the footer * * @since 2.6.0 diff --git a/wp-includes/version.php b/wp-includes/version.php index 34d7723554..3fa9d5ec0c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37337'; +$wp_version = '4.6-alpha-37338'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.