From 0887beb1d8e6cf4e3490c7c3899878d73f116367 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 20 Jul 2012 15:09:11 +0000 Subject: [PATCH] Fix typo in HTTP docblock. props ocean90. fixes #21215. git-svn-id: https://develop.svn.wordpress.org/trunk@21290 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/class-http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/class-http.php b/wp-includes/class-http.php index 78706383b9..39798e2a1f 100644 --- a/wp-includes/class-http.php +++ b/wp-includes/class-http.php @@ -1679,7 +1679,7 @@ class WP_Http_Encoding { /** * Decompression of deflated string while staying compatible with the majority of servers. * - * Certain Servers will return deflated data with headers which PHP's gziniflate() + * Certain Servers will return deflated data with headers which PHP's gzinflate() * function cannot handle out of the box. The following function has been created from * various snippets on the gzinflate() PHP documentation. *