aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/SkRect_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/SkRect_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/SkRect_Reference.bmh')
-rw-r--r--docs/SkRect_Reference.bmh26
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/SkRect_Reference.bmh b/docs/SkRect_Reference.bmh
index 2d878ef36d..fd747b0137 100644
--- a/docs/SkRect_Reference.bmh
+++ b/docs/SkRect_Reference.bmh
@@ -1270,7 +1270,7 @@ If dy is positive, Rect returned is moved downward.
#Param dx added to fLeft and fRight ##
#Param dy added to fTop and fBottom ##
-#Return Rect offset in x or y, with original width and height ##
+#Return Rect offset on axes, with original width and height ##
#Example
SkRect rect = { 10, 50, 20, 60 };
@@ -1669,10 +1669,10 @@ Returns false if Rect does not intersect construction, and leaves Rect unchanged
Returns false if either construction or Rect is empty, leaving Rect unchanged.
-#Param left x minimum of constructed Rect ##
-#Param top y minimum of constructed Rect ##
-#Param right x maximum of constructed Rect ##
-#Param bottom y maximum of constructed Rect ##
+#Param left x-axis minimum of constructed Rect ##
+#Param top y-axis minimum of constructed Rect ##
+#Param right x-axis maximum of constructed Rect ##
+#Param bottom y-axis maximum of constructed Rect ##
#Return true if construction and Rect have area in common ##
@@ -1736,10 +1736,10 @@ construction.
Returns true if Rect intersects construction.
Returns false if either construction or Rect is empty, or do not intersect.
-#Param left x minimum of constructed Rect ##
-#Param top y minimum of constructed Rect ##
-#Param right x maximum of constructed Rect ##
-#Param bottom y maximum of constructed Rect ##
+#Param left x-axis minimum of constructed Rect ##
+#Param top y-axis minimum of constructed Rect ##
+#Param right x-axis maximum of constructed Rect ##
+#Param bottom y-axis maximum of constructed Rect ##
#Return true if construction and Rect have area in common ##
@@ -1825,10 +1825,10 @@ Sets Rect to the union of itself and the construction.
Has no effect if construction is empty. Otherwise, if Rect is empty, sets
Rect to construction.
-#Param left x minimum of constructed Rect ##
-#Param top y minimum of constructed Rect ##
-#Param right x maximum of constructed Rect ##
-#Param bottom y maximum of constructed Rect ##
+#Param left x-axis minimum of constructed Rect ##
+#Param top y-axis minimum of constructed Rect ##
+#Param right x-axis maximum of constructed Rect ##
+#Param bottom y-axis maximum of constructed Rect ##
#Example
SkRect rect = { 10, 20, 15, 25};