diff options
| author | 2022-02-08 20:57:24 +0000 | |
|---|---|---|
| committer | 2022-02-08 20:57:24 +0000 | |
| commit | 4a441d640f357f6760537132cbbe1326a44eb781 (patch) | |
| tree | 7d443e84c8e9576f8fedcb5cc349d18b30ad520a /graphics/java/android | |
| parent | 044dcf957dc951f1f7645928912f7da80beb0a5b (diff) | |
| parent | ef678579290e72410352c8c2175d341053dfd057 (diff) | |
Merge "Fixed documentation typo on TextAlign getter and setter methods - Reported on http://b/216852542" am: 3c48391809 am: 09707846a2 am: b01b828294 am: ef67857929
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1977166
Change-Id: I5af6e86d9912efe78db59b623c77504b7df5a87a
Diffstat (limited to 'graphics/java/android')
| -rw-r--r-- | graphics/java/android/graphics/Paint.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/java/android/graphics/Paint.java b/graphics/java/android/graphics/Paint.java index afd320d48c51..451b99ea7550 100644 --- a/graphics/java/android/graphics/Paint.java +++ b/graphics/java/android/graphics/Paint.java @@ -1612,7 +1612,7 @@ public class Paint { * Return the paint's Align value for drawing text. This controls how the * text is positioned relative to its origin. LEFT align means that all of * the text will be drawn to the right of its origin (i.e. the origin - * specifieds the LEFT edge of the text) and so on. + * specifies the LEFT edge of the text) and so on. * * @return the paint's Align value for drawing text. */ @@ -1624,7 +1624,7 @@ public class Paint { * Set the paint's text alignment. This controls how the * text is positioned relative to its origin. LEFT align means that all of * the text will be drawn to the right of its origin (i.e. the origin - * specifieds the LEFT edge of the text) and so on. + * specifies the LEFT edge of the text) and so on. * * @param align set the paint's Align value for drawing text. */ |