summaryrefslogtreecommitdiff
path: root/runtime/base/bit_vector.cc
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2017-06-21 16:28:06 +0100
committer Roland Levillain <rpl@google.com> 2018-02-09 15:36:49 +0000
commitef012225dcec8f736fc8fd848f5d8ee01c3c280f (patch)
treed5f65b05313a09e92055550f07f063537b9e6ca5 /runtime/base/bit_vector.cc
parentcd4ddeea1c33d5f9b7758d116451bd06f1b81aff (diff)
Fix typos.
Test: art/test/testrunner/testrunner.py Change-Id: I5f5e052c940650a3adb3a8717b84260e6b306500
Diffstat (limited to 'runtime/base/bit_vector.cc')
-rw-r--r--runtime/base/bit_vector.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/base/bit_vector.cc b/runtime/base/bit_vector.cc
index 5e97a63c0d..c706c7ebf2 100644
--- a/runtime/base/bit_vector.cc
+++ b/runtime/base/bit_vector.cc
@@ -223,7 +223,7 @@ void BitVector::Subtract(const BitVector *src) {
// Difference until max, we know both accept it:
// There is no need to do more:
// If we are bigger than src, the upper bits are unchanged.
- // If we are smaller than src, the non-existant upper bits are 0 and thus can't get subtracted.
+ // If we are smaller than src, the nonexistent upper bits are 0 and thus can't get subtracted.
for (uint32_t idx = 0; idx < min_size; idx++) {
storage_[idx] &= (~(src->GetRawStorageWord(idx)));
}