Index: /Users/simon/Projects/WordPress-Bleeding/site/wp-includes/functions.php
===================================================================
--- /Users/simon/Projects/WordPress-Bleeding/site/wp-includes/functions.php	(revision 14741)
+++ /Users/simon/Projects/WordPress-Bleeding/site/wp-includes/functions.php	(working copy)
@@ -1324,9 +1324,9 @@
  * Build URL query based on an associative and, or indexed array.
  *
  * This is a convenient function for easily building url queries. It sets the
- * separator to '&' and uses _http_build_query() function.
+ * separator to '&' and uses http_build_query() function.
  *
- * @see _http_build_query() Used to build the query
+ * @see http_build_query() Used to build the query
  * @link http://us2.php.net/manual/en/function.http-build-query.php more on what
  *		http_build_query() does.
  *
@@ -1336,7 +1336,7 @@
  * @return string URL encoded string
  */
 function build_query( $data ) {
-	return _http_build_query( $data, null, '&', '', false );
+	return http_build_query( $data, null, '&', '', false );
 }
 
 /**
