Index: src/core/SkWriter32.cpp |
diff --git a/src/core/SkWriter32.cpp b/src/core/SkWriter32.cpp |
index ca21c5ad6db8efe43cd671d5e3cb453c3df07e53..760313ec98d99d005022c9dd2657ecfebeea1fdf 100644 |
--- a/src/core/SkWriter32.cpp |
+++ b/src/core/SkWriter32.cpp |
@@ -248,7 +248,7 @@ const char* SkReader32::readString(size_t* outLen) { |
size_t len = this->readInt(); |
const void* ptr = this->peek(); |
- // skip over teh string + '\0' and then pad to a multiple of 4 |
+ // skip over the string + '\0' and then pad to a multiple of 4 |
sugoi1
2013/08/29 18:55:53
Just fixing the typo
|
size_t alignedSize = SkAlign4(len + 1); |
this->skip(alignedSize); |