From 9cbffbdb44c6505771570c87fe8bfe1917bd3152 Mon Sep 17 00:00:00 2001 From: "Drew Jaynes (DrewAPicture)" Date: Tue, 4 Nov 2014 15:58:44 +0000 Subject: [PATCH] Merge a multi-line comment into a single-line comment in wp-includes/link-template.php. See [30166]. See #30224. git-svn-id: https://develop.svn.wordpress.org/trunk@30226 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/link-template.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wp-includes/link-template.php b/src/wp-includes/link-template.php index effc3063a6..8d6830ca5f 100644 --- a/src/wp-includes/link-template.php +++ b/src/wp-includes/link-template.php @@ -2333,8 +2333,7 @@ function get_the_pagination( $args = array() ) { // Set up paginated links. $links = paginate_links( $args ); - // _navigation_markup() expects string, - // paginate_links() can return an array + // `navigation_markup()` expects a string, `paginate_links()` can return an array. if ( $links && ! is_array( $links ) ) { $navigation = _navigation_markup( $links, 'pagination' ); }