From 8e96abbcc2214c3566b814619c4b038d59ad77d9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 2 Jul 2018 17:58:00 +0000 Subject: [PATCH] Docs: Add missing backtick in `delete_metadata()` DocBlock. Props dilipbheda, cliffpaulick. Fixes #44433. git-svn-id: https://develop.svn.wordpress.org/trunk@43385 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/meta.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/meta.php b/src/wp-includes/meta.php index a569e730e6..163dcc90a1 100644 --- a/src/wp-includes/meta.php +++ b/src/wp-includes/meta.php @@ -314,7 +314,7 @@ function update_metadata( $meta_type, $object_id, $meta_key, $meta_value, $prev_ * @param string $meta_key Metadata key * @param mixed $meta_value Optional. Metadata value. Must be serializable if non-scalar. If specified, only delete * metadata entries with this value. Otherwise, delete all entries with the specified meta_key. - * Pass `null, `false`, or an empty string to skip this check. (For backward compatibility, + * Pass `null`, `false`, or an empty string to skip this check. (For backward compatibility, * it is not possible to pass an empty string to delete those entries with an empty string * for a value.) * @param bool $delete_all Optional, default is false. If true, delete matching metadata entries for all objects,