From 75a52934605455448655748fc3627fd901d93a50 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 24 Sep 2018 20:45:01 +0000 Subject: [PATCH] Docs: Add a line break to `wp_is_uuid()` DocBlock for better readability. See #42505. git-svn-id: https://develop.svn.wordpress.org/trunk@43657 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 1433ca98f8..e2f3f0751f 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -6144,7 +6144,8 @@ function wp_generate_uuid4() { * @since 4.9.0 * * @param mixed $uuid UUID to check. - * @param int $version Specify which version of UUID to check against. Default is none, to accept any UUID version. Otherwise, only version allowed is `4`. + * @param int $version Specify which version of UUID to check against. Default is none, + * to accept any UUID version. Otherwise, only version allowed is `4`. * @return bool The string is a valid UUID or false on failure. */ function wp_is_uuid( $uuid, $version = null ) {