From 664bb85f1b377a272f5cc1ded421ec8d11d29576 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 1 May 2016 17:32:26 +0000 Subject: [PATCH] Docs: Add backtick escaping for two inline code samples in docs. See #32246. Built from https://develop.svn.wordpress.org/trunk@37338 git-svn-id: http://core.svn.wordpress.org/trunk@37304 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-theme.php | 2 +- wp-includes/script-loader.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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.