aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/SkIRect_Reference.bmh
diff options
context:
space:
mode:
authorGravatar Cary Clark <caryclark@skia.org>2018-06-14 12:28:14 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-06-14 16:54:47 +0000
commit5538c1390649811eb6498eeca53cc1db00877503 (patch)
tree5a7b4d580393f32f9774f00c19a0e01bdd4c23f4 /docs/SkIRect_Reference.bmh
parentab17347df32807cabd9f2a518d22c3bd420e482f (diff)
docs fix external substitutions
explict substitutions are required to distiguish words that preserve underscores R=caryclark@google.com Docs-Preview: https://skia.org/?cl=134841 Bug: skia:6898 Change-Id: Id1a5669c180e03e048de3c0251882bd06b297283 Reviewed-on: https://skia-review.googlesource.com/134841 Reviewed-by: Cary Clark <caryclark@skia.org> Commit-Queue: Cary Clark <caryclark@skia.org> Auto-Submit: Cary Clark <caryclark@skia.org>
Diffstat (limited to 'docs/SkIRect_Reference.bmh')
-rw-r--r--docs/SkIRect_Reference.bmh34
1 files changed, 17 insertions, 17 deletions
diff --git a/docs/SkIRect_Reference.bmh b/docs/SkIRect_Reference.bmh
index f3c269b294..bcca39e35b 100644
--- a/docs/SkIRect_Reference.bmh
+++ b/docs/SkIRect_Reference.bmh
@@ -790,7 +790,7 @@ If dy is positive, IRect returned is moved downward.
#Param dx offset added to fLeft and fRight ##
#Param dy offset added to fTop and fBottom ##
-#Return IRect offset in x or y, with original width and height ##
+#Return IRect offset by dx and dy, with original width and height ##
#Example
SkIRect rect = { 10, 50, 20, 60 };
@@ -1129,10 +1129,10 @@ construction.
Returns true if IRect contains construction.
Returns false if IRect is empty or construction is empty.
-#Param left x minimum of constructed IRect ##
-#Param top y minimum of constructed IRect ##
-#Param right x maximum of constructed IRect ##
-#Param bottom y maximum of constructed IRect ##
+#Param left x-axis minimum of constructed IRect ##
+#Param top y-axis minimum of constructed IRect ##
+#Param right x-axis maximum of constructed IRect ##
+#Param bottom y-axis maximum of constructed IRect ##
#Return true if all sides of IRect are outside construction ##
@@ -1241,10 +1241,10 @@ Asserts if IRect is empty or construction is empty, and if SK_DEBUG is defined.
Return is undefined if IRect is empty or construction is empty.
-#Param left x minimum of constructed IRect ##
-#Param top y minimum of constructed IRect ##
-#Param right x maximum of constructed IRect ##
-#Param bottom y maximum of constructed IRect ##
+#Param left x-axis minimum of constructed IRect ##
+#Param top y-axis minimum of constructed IRect ##
+#Param right x-axis maximum of constructed IRect ##
+#Param bottom y-axis maximum of constructed IRect ##
#Return true if all sides of IRect are outside construction ##
@@ -1412,10 +1412,10 @@ Returns false if IRect does not intersect construction, and leaves IRect unchang
Returns false if either construction or IRect is empty, leaving IRect unchanged.
-#Param left x minimum of constructed IRect ##
-#Param top y minimum of constructed IRect ##
-#Param right x maximum of constructed IRect ##
-#Param bottom y maximum of constructed IRect ##
+#Param left x-axis minimum of constructed IRect ##
+#Param top y-axis minimum of constructed IRect ##
+#Param right x-axis maximum of constructed IRect ##
+#Param bottom y-axis maximum of constructed IRect ##
#Return true if construction and IRect have area in common ##
@@ -1510,10 +1510,10 @@ Sets IRect to the union of itself and the construction.
Has no effect if construction is empty. Otherwise, if IRect is empty, sets
IRect to construction.
-#Param left x minimum of constructed IRect ##
-#Param top y minimum of constructed IRect ##
-#Param right x maximum of constructed IRect ##
-#Param bottom y maximum of constructed IRect ##
+#Param left x-axis minimum of constructed IRect ##
+#Param top y-axis minimum of constructed IRect ##
+#Param right x-axis maximum of constructed IRect ##
+#Param bottom y-axis maximum of constructed IRect ##
#Example
SkIRect rect = { 10, 20, 15, 25};