From 1d89f9e228ed19779eedac03d2399843aef1628c Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Thu, 10 Mar 2016 02:50:46 +0000 Subject: [PATCH] Docs: Improve syntax for the `$lengths` parameter in the hook doc for the `wp_get_comment_fields_max_lengths` filter, introduced in [36272]. See #10377. See #35986. git-svn-id: https://develop.svn.wordpress.org/trunk@36921 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/comment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/comment.php b/src/wp-includes/comment.php index 2615e20f00..50fce20509 100644 --- a/src/wp-includes/comment.php +++ b/src/wp-includes/comment.php @@ -1021,7 +1021,7 @@ function wp_get_comment_fields_max_lengths() { * * @since 4.5.0 * - * @param array $lengths Associative array 'field_name' => 'maximum length'. + * @param array $lengths Associative array `'field_name' => 'maximum length'`. */ return apply_filters( 'wp_get_comment_fields_max_lengths', $lengths ); }