Docs: Use more specific type in parameter description for `wp_unslash()`.

Props marekdedic.
See #48303.

git-svn-id: https://develop.svn.wordpress.org/trunk@47400 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-03-01 16:23:24 +00:00
parent a7c0d2c8fc
commit f327466200
1 changed files with 2 additions and 2 deletions

View File

@ -5473,8 +5473,8 @@ function wp_slash( $value ) {
*
* @since 3.6.0
*
* @param string|array $value String or array of strings to unslash.
* @return string|array Unslashed $value
* @param string|string[] $value String or array of strings to unslash.
* @return string|string[] Unslashed $value
*/
function wp_unslash( $value ) {
return stripslashes_deep( $value );