Index: include/core/SkImage.h |
diff --git a/include/core/SkImage.h b/include/core/SkImage.h |
index 9e3810c44f180e9ef3f4c8b411b51eb11e4d6597..667cf6b9a110a03d87d789f177c81646e3fb4aeb 100644 |
--- a/include/core/SkImage.h |
+++ b/include/core/SkImage.h |
@@ -315,10 +315,10 @@ public: |
* |
* e.g. |
* If the filter makes the result larger by a margin of 4 the output would be: |
- * result->width() = this->width + 8 |
- * result->height() = this->height + 8 |
- * offset.x() == -4 |
- * offset.y() == -4 |
+ * result->width() == this->width + 8 |
+ * result->height() == this->height + 8 |
+ * offset.x() == -4 |
+ * offset.y() == -4 |
* |
* If the filter fails to create a resulting image, null is returned, and the offset parameter |
* (if specified) will be undefined. |