aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/MatrixTest.cpp
diff options
context:
space:
mode:
authorGravatar bungeman <bungeman@google.com>2016-08-24 12:01:31 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-24 12:01:31 -0700
commite55131c186116c0fe3ff8775f2a9d684174316bb (patch)
tree80620d4a48db3c6888397fca8097655680ffa20b /tests/MatrixTest.cpp
parent531191fefebb5bed6177946e2e227ddff292cff2 (diff)
s/invertable/invertible
English orthography is often made difficult by poor phonology. TBR=oxford-english-dictionary,mtklein Review-Url: https://codereview.chromium.org/2272083002
Diffstat (limited to 'tests/MatrixTest.cpp')
-rw-r--r--tests/MatrixTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/MatrixTest.cpp b/tests/MatrixTest.cpp
index 414aab2f9a..da2ae35cd7 100644
--- a/tests/MatrixTest.cpp
+++ b/tests/MatrixTest.cpp
@@ -239,8 +239,8 @@ static void test_matrix_min_max_scale(skiatest::Reporter* reporter) {
SkMatrix mats[2*SK_ARRAY_COUNT(baseMats)];
for (size_t i = 0; i < SK_ARRAY_COUNT(baseMats); ++i) {
mats[i] = baseMats[i];
- bool invertable = mats[i].invert(&mats[i + SK_ARRAY_COUNT(baseMats)]);
- REPORTER_ASSERT(reporter, invertable);
+ bool invertible = mats[i].invert(&mats[i + SK_ARRAY_COUNT(baseMats)]);
+ REPORTER_ASSERT(reporter, invertible);
}
SkRandom rand;
for (int m = 0; m < 1000; ++m) {