diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/java/android/graphics/Paint.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/java/android/graphics/Paint.java b/graphics/java/android/graphics/Paint.java index 6fac969..81980d9 100644 --- a/graphics/java/android/graphics/Paint.java +++ b/graphics/java/android/graphics/Paint.java @@ -109,13 +109,13 @@ public class Paint { */ BUTT (0), /** - * The stroke projects out as a square, with the center at the end - * of the path. + * The stroke projects out as a semicircle, with the center at the + * end of the path. */ ROUND (1), /** - * The stroke projects out as a semicircle, with the center at the - * end of the path. + * The stroke projects out as a square, with the center at the end + * of the path. */ SQUARE (2); |