aboutsummaryrefslogtreecommitdiffhomepage
path: root/fuzz
diff options
context:
space:
mode:
authorGravatar Yuqian Li <liyuqian@google.com>2018-02-28 11:46:00 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-03-01 14:52:04 +0000
commita63d6900d3baa23d6340a265bd0cf4f55ca2fdd9 (patch)
tree0c432c99c7126d89da9990881ff04813aac7ea4d /fuzz
parentc6f74ca674c4d6cd5965f5c14d1042e4148f0f68 (diff)
Fix a tiny typo
This shouldn't matter... But I just feel the impulsion to fix it. Bug: skia: Change-Id: Id3b6302071165b3abe98a3d89409d39715fac23c Reviewed-on: https://skia-review.googlesource.com/111002 Commit-Queue: Kevin Lubick <kjlubick@google.com> Reviewed-by: Kevin Lubick <kjlubick@google.com>
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/Fuzz.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/Fuzz.h b/fuzz/Fuzz.h
index a7771713cf..203a57fd9f 100644
--- a/fuzz/Fuzz.h
+++ b/fuzz/Fuzz.h
@@ -34,7 +34,7 @@ public:
// foo(5, 7) when compiled on GCC and foo(7, 5) when compiled on Clang.
// By requiring params to be passed in, we avoid the temptation to call
// next() in a way that does not consume fuzzed bytes in a single
- // uplatform-independent order.
+ // platform-independent order.
template <typename T>
void next(T* t);