Docs: Standardize capitalization of Ajax throughout core documentation per the core spelling guide.

Ajax, while considered an acronym for Asynchronous JavaScript and XML, is most commonly capitalized only in the first character.

Part props ocean90.
See #32246.


git-svn-id: https://develop.svn.wordpress.org/trunk@38028 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes
2016-07-10 00:50:21 +00:00
parent 8af1a9d56a
commit 5cf0ef170a
15 changed files with 56 additions and 56 deletions
+3 -3
View File
@@ -2569,7 +2569,7 @@ function wp_die( $message = '', $title = '', $args = array() ) {
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
/**
* Filters callback for killing WordPress execution for AJAX requests.
* Filters the callback for killing WordPress execution for Ajax requests.
*
* @since 3.4.0
*
@@ -2578,7 +2578,7 @@ function wp_die( $message = '', $title = '', $args = array() ) {
$function = apply_filters( 'wp_die_ajax_handler', '_ajax_wp_die_handler' );
} elseif ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) {
/**
* Filters callback for killing WordPress execution for XML-RPC requests.
* Filters the callback for killing WordPress execution for XML-RPC requests.
*
* @since 3.4.0
*
@@ -2587,7 +2587,7 @@ function wp_die( $message = '', $title = '', $args = array() ) {
$function = apply_filters( 'wp_die_xmlrpc_handler', '_xmlrpc_wp_die_handler' );
} else {
/**
* Filters callback for killing WordPress execution for all non-AJAX, non-XML-RPC requests.
* Filters the callback for killing WordPress execution for all non-Ajax, non-XML-RPC requests.
*
* @since 3.0.0
*