Make WordPress Core


Ignore:
Timestamp:
01/03/2024 09:57:32 PM (17 months ago)
Author:
hellofromTonya
Message:

Docs: Replace "sanity" with "confidence" for inclusive language.

The phrase "sanity check" unnecessarily references mental health. It's an old phrase used to denote an extra step in verifying code works as expected.

“The WordPress open source community cares about diversity. We strive to maintain a welcoming environment where everyone can feel included.”

While "sanity check" is a well-known phrase with a specific meaning, "confidence check" is a direct replacement that is more clear of its intent while being more inclusive.

Words matter.

Follow-up to [49216], [46271], [40583], [38832], [38637], [37409], [33359], [32162], [30346], [30345], [30238], [30055], [29902], [28763], [26141], [25002], [22227], [13428], [12148], [11025], [8927].

Props dartiss, hellofromTonya.
Fixes #60187.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/db/charset.php

    r55562 r57239  
    10231023        $data       = array(
    10241024            'utf8_bin'                   => array(
    1025                 // utf8_bin tables don't need extra sanity checking.
     1025                // utf8_bin tables don't need extra confidence checking.
    10261026                'create'   => '( a VARCHAR(50) COLLATE utf8_bin )',
    10271027                'expected' => true,
     
    10381038            ),
    10391039            'utf8_bin + big5_chinese_ci' => array(
    1040                 // utf8_bin tables don't need extra sanity checking,
     1040                // utf8_bin tables don't need extra confidence checking,
    10411041                // except for when they're not just utf8_bin.
    10421042                'create'   => '( a VARCHAR(50) COLLATE utf8_bin, b VARCHAR(50) COLLATE big5_chinese_ci )',
     
    10441044            ),
    10451045            'utf8_bin + int'             => array(
    1046                 // utf8_bin tables don't need extra sanity checking
     1046                // utf8_bin tables don't need extra confidence checking
    10471047                // when the other columns aren't strings.
    10481048                'create'   => '( a VARCHAR(50) COLLATE utf8_bin, b INT )',
Note: See TracChangeset for help on using the changeset viewer.