Avoid use of 'sanity' and 'sanity check' in the code base (#3585)

In line with:

  https://source.android.com/setup/contribute/respectful-code

this change uses the terms 'coherence' and 'coherence check' where
'sanity' and 'sanity check' were previously used.
This commit is contained in:
Alastair Donaldson
2020-07-29 04:55:02 +01:00
committed by GitHub
parent d7faf1ef22
commit 57eeccf2a9
12 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ std::ostream& operator<<(std::ostream& os, const ParsedInstruction& inst) {
return os;
}
// Sanity check for the equality operator on ParsedInstruction.
// Coherence check for the equality operator on ParsedInstruction.
TEST(ParsedInstruction, ZeroInitializedAreEqual) {
spv_parsed_instruction_t pi = {};
ParsedInstruction a(pi);