fix SkIRect doc to match include

changed int to int32_t as needed

Docs-Preview: https://skia.org/?cl=90840
Bug: skia:6898
Change-Id: I909168314acc5ee007d4a4d4e39062e652c7d6c6
Reviewed-on: https://skia-review.googlesource.com/90840
Commit-Queue: Cary Clark <caryclark@skia.org>
Reviewed-by: Cary Clark <caryclark@skia.org>
diff --git a/docs/SkIRect_Reference.bmh b/docs/SkIRect_Reference.bmh
index b29020b..fec57a9 100644
--- a/docs/SkIRect_Reference.bmh
+++ b/docs/SkIRect_Reference.bmh
@@ -287,7 +287,7 @@
 
 # ------------------------------------------------------------------------------
 
-#Method int left() const
+#Method int32_t left() const
 
 Returns left edge of IRect, if sorted.
 Call sort() to reverse fLeft and fRight if needed.
@@ -311,7 +311,7 @@
 
 # ------------------------------------------------------------------------------
 
-#Method int top() const
+#Method int32_t top() const
 
 Returns top edge of IRect, if sorted. Call isEmpty to see if IRect may be invalid,
 and sort() to reverse fTop and fBottom if needed.
@@ -335,7 +335,7 @@
 
 # ------------------------------------------------------------------------------
 
-#Method int right() const
+#Method int32_t right() const
 
 Returns right edge of IRect, if sorted.
 Call sort() to reverse fLeft and fRight if needed.
@@ -359,7 +359,7 @@
 
 # ------------------------------------------------------------------------------
 
-#Method int bottom() const
+#Method int32_t bottom() const
 
 Returns bottom edge of IRect, if sorted. Call isEmpty to see if IRect may be invalid,
 and sort() to reverse fTop and fBottom if needed.
@@ -383,7 +383,7 @@
 
 # ------------------------------------------------------------------------------
 
-#Method int x() const
+#Method int32_t x() const
 
 Returns left edge of IRect, if sorted. Call isEmpty to see if IRect may be invalid,
 and sort() to reverse fLeft and fRight if needed.
@@ -407,7 +407,7 @@
 
 # ------------------------------------------------------------------------------
 
-#Method int y() const
+#Method int32_t y() const
 
 Returns top edge of IRect, if sorted. Call isEmpty to see if IRect may be invalid,
 and sort() to reverse fTop and fBottom if needed.
@@ -431,7 +431,7 @@
 
 # ------------------------------------------------------------------------------
 
-#Method int width() const
+#Method int32_t width() const
 
 Returns span on the x-axis. This does not check if IRect is sorted, or if
 result fits in 32-bit signed integer; result may be negative.
@@ -455,7 +455,7 @@
 
 # ------------------------------------------------------------------------------
 
-#Method int height() const
+#Method int32_t height() const
 
 Returns span on the y-axis. This does not check if IRect is sorted, or if
 result fits in 32-bit signed integer; result may be negative.
@@ -512,7 +512,7 @@
 
 # ------------------------------------------------------------------------------
 
-#Method int centerX() const
+#Method int32_t centerX() const
 
 Returns average of left edge and right edge. Result does not change if Rect
 is sorted. Result may be incorrect if Rect is far from the origin.
@@ -543,7 +543,7 @@
 
 # ------------------------------------------------------------------------------
 
-#Method int centerY() const
+#Method int32_t centerY() const
 
 Returns average of top edge and bottom edge. Result does not change if Rect
 is sorted. Result may be incorrect if Rect is far from the origin.