mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Fix copy pasta in wp_cache_decr()
doc block.
Props danielbachhuber. Fixes #33548. Built from https://develop.svn.wordpress.org/trunk@33809 git-svn-id: http://core.svn.wordpress.org/trunk@33777 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
32110c7f77
commit
d5f666013f
@ -50,7 +50,7 @@ function wp_cache_close() {
|
|||||||
*
|
*
|
||||||
* @global WP_Object_Cache $wp_object_cache
|
* @global WP_Object_Cache $wp_object_cache
|
||||||
*
|
*
|
||||||
* @param int|string $key The cache key to increment
|
* @param int|string $key The cache key to decrement.
|
||||||
* @param int $offset The amount by which to decrement the item's value. Default is 1.
|
* @param int $offset The amount by which to decrement the item's value. Default is 1.
|
||||||
* @param string $group The group the key is in.
|
* @param string $group The group the key is in.
|
||||||
* @return false|int False on failure, the item's new value on success.
|
* @return false|int False on failure, the item's new value on success.
|
||||||
@ -423,7 +423,7 @@ class WP_Object_Cache {
|
|||||||
*
|
*
|
||||||
* @since 3.3.0
|
* @since 3.3.0
|
||||||
*
|
*
|
||||||
* @param int|string $key The cache key to increment
|
* @param int|string $key The cache key to decrement.
|
||||||
* @param int $offset The amount by which to decrement the item's value. Default is 1.
|
* @param int $offset The amount by which to decrement the item's value. Default is 1.
|
||||||
* @param string $group The group the key is in.
|
* @param string $group The group the key is in.
|
||||||
* @return false|int False on failure, the item's new value on success.
|
* @return false|int False on failure, the item's new value on success.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-33808';
|
$wp_version = '4.4-alpha-33809';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user