Make WordPress Core


Ignore:
Timestamp:
11/23/2022 03:41:39 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Docs: Revise comments using “we” in WordPress root directory files.

This updates some inline comments to better match the guidelines and recommendations set forth in the make/core and make/docs handbooks:

In general, use second person in your documentation. Second person depicts a friendly tone, with a perfect focus on the reader. In addition to this, directly addressing the reader helps avoid passive voice; thereby preventing unwanted confusion.
...
the word “we” should be avoided (...) unless its made very clear which group is speaking.

Includes:

  • Replacing first-person usage of "we" with second person point of view.
  • Making small clarification adjustments where the voice is much too casual or lacks clear context, especially for non-native English speakers.

References:

Follow-up to [2176], [3430], [4676], [6009], [7991], [12688], [12762], [26008], [28978], [44488], [44962], [51979], [53131], [53132], [53156], [53131], [54200].

Props ironprogrammer, costdev, jorbin, SergeyBiryukov.
See #57052.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-cron.php

    r54258 r54866  
    2424}
    2525
    26 /* Don't make the request block till we finish, if possible. */
     26// Don't run cron until the request finishes, if possible.
    2727if ( PHP_VERSION_ID >= 70016 && function_exists( 'fastcgi_finish_request' ) ) {
    2828    fastcgi_finish_request();
     
    3636
    3737/**
    38  * Tell WordPress we are doing the cron task.
     38 * Tell WordPress the cron task is running.
    3939 *
    4040 * @var bool
Note: See TracChangeset for help on using the changeset viewer.