Use non-binary pronouns in comments. (#13209)

* use non binary pronouns in comments

* cargo fmt

* fix the use of "it" with "they" when dealing about an opperations identity
This commit is contained in:
Dan Henton
2023-01-28 00:31:17 +13:00
committed by GitHub
parent 1b27ae9549
commit ae8ef86ec0
12 changed files with 19 additions and 18 deletions
+2 -2
View File
@@ -2056,9 +2056,9 @@ mod tests {
#[test]
fn code_hash_returns_proper_values() {
let code_bob = MockLoader::insert(Call, |ctx, _| {
// ALICE is not a contract and hence she does not have a code_hash
// ALICE is not a contract and hence they do not have a code_hash
assert!(ctx.ext.code_hash(&ALICE).is_none());
// BOB is a contract and hence he has a code_hash
// BOB is a contract and hence it has a code_hash
assert!(ctx.ext.code_hash(&BOB).is_some());
exec_success()
});