Browse Source

Changed pronouns for correctness and inclusivity

pull/145/head
bikinibabe 10 years ago
committed by Cory Fields
parent
commit
ee932025c1
  1. 2
      doc/build-unix.md
  2. 2
      qa/rpc-tests/wallet.py
  3. 2
      src/checkqueue.h

2
doc/build-unix.md

@ -196,7 +196,7 @@ Hardening enables the following features:
* Position Independent Executable
Build position independent code to take advantage of Address Space Layout Randomization
offered by some kernels. An attacker who is able to cause execution of code at an arbitrary
memory location is thwarted if he doesn't know where anything useful is located.
memory location is thwarted if he or she doesn't know where anything useful is located.
The stack and heap are randomly located by default but this allows the code section to be
randomly located as well.

2
qa/rpc-tests/wallet.py

@ -61,7 +61,7 @@ class WalletTest (BitcoinTestFramework):
walletinfo = self.nodes[0].getwalletinfo()
assert_equal(walletinfo['immature_balance'], 0)
# Have node0 mine a block, thus he will collect his own fee.
# Have node0 mine a block, thus they will collect their own fee.
self.nodes[0].setgenerate(True, 1)
self.sync_all()

2
src/checkqueue.h

@ -81,7 +81,7 @@ private:
fAllOk &= fOk;
nTodo -= nNow;
if (nTodo == 0 && !fMaster)
// We processed the last element; inform the master he can exit and return the result
// We processed the last element; inform the master he or she can exit and return the result
condMaster.notify_one();
} else {
// first iteration

Loading…
Cancel
Save