Make WordPress Core


Ignore:
Timestamp:
07/10/2016 12:50:21 AM (9 years ago)
Author:
DrewAPicture
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/admin-ajax.php

    r37741 r38028  
    11<?php
    22/**
    3  * WordPress AJAX Process Execution.
     3 * WordPress Ajax Process Execution
    44 *
    55 * @package WordPress
     
    1010
    1111/**
    12  * Executing AJAX process.
     12 * Executing Ajax process.
    1313 *
    1414 * @since 2.1.0
     
    8282if ( is_user_logged_in() ) {
    8383    /**
    84      * Fires authenticated AJAX actions for logged-in users.
     84     * Fires authenticated Ajax actions for logged-in users.
    8585     *
    8686     * The dynamic portion of the hook name, `$_REQUEST['action']`,
    87      * refers to the name of the AJAX action callback being fired.
     87     * refers to the name of the Ajax action callback being fired.
    8888     *
    8989     * @since 2.1.0
     
    9292} else {
    9393    /**
    94      * Fires non-authenticated AJAX actions for logged-out users.
     94     * Fires non-authenticated Ajax actions for logged-out users.
    9595     *
    9696     * The dynamic portion of the hook name, `$_REQUEST['action']`,
    97      * refers to the name of the AJAX action callback being fired.
     97     * refers to the name of the Ajax action callback being fired.
    9898     *
    9999     * @since 2.8.0
Note: See TracChangeset for help on using the changeset viewer.