From 29d254062230bc4430c2e7984d8120b6d7a79a3c Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Thu, 29 Jul 2021 04:36:34 -0400 Subject: [PATCH] Googletest export Proliferation of inclusive language. PiperOrigin-RevId: 387535677 --- docs/advanced.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/advanced.md b/docs/advanced.md index 8dff5ba1..34aacb6b 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -383,10 +383,10 @@ EXPECT_TRUE(IsCorrectBarIntVector(bar_ints)) ## Death Tests In many applications, there are assertions that can cause application failure if -a condition is not met. These sanity checks, which ensure that the program is in -a known good state, are there to fail at the earliest possible time after some -program state is corrupted. If the assertion checks the wrong condition, then -the program may proceed in an erroneous state, which could lead to memory +a condition is not met. These consistency checks, which ensure that the program +is in a known good state, are there to fail at the earliest possible time after +some program state is corrupted. If the assertion checks the wrong condition, +then the program may proceed in an erroneous state, which could lead to memory corruption, security holes, or worse. Hence it is vitally important to test that such assertion statements work as expected.