diff options
author | Mark Doliner <mark@kingant.net> | 2014-08-27 16:04:02 -0700 |
---|---|---|
committer | Mark Doliner <mark@kingant.net> | 2014-09-05 13:57:51 -0700 |
commit | d0646dca40ff740bd49755ad60751678b0ccca52 (patch) | |
tree | 8e1cf2b4efebac703e253a1f14abc34557e8154e /graphics/java | |
parent | 2d3571cc17a5a6b1072951227d889ce14a3f88cf (diff) | |
download | frameworks_base-d0646dca40ff740bd49755ad60751678b0ccca52.zip frameworks_base-d0646dca40ff740bd49755ad60751678b0ccca52.tar.gz frameworks_base-d0646dca40ff740bd49755ad60751678b0ccca52.tar.bz2 |
Small documentation fixes across many files.
Change-Id: I3e8787ce4bc6018ea1dc9aef2a2cd4e0a8dde663
Diffstat (limited to 'graphics/java')
-rw-r--r-- | graphics/java/android/graphics/drawable/GradientDrawable.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/java/android/graphics/drawable/GradientDrawable.java b/graphics/java/android/graphics/drawable/GradientDrawable.java index b340777..d4056f7 100644 --- a/graphics/java/android/graphics/drawable/GradientDrawable.java +++ b/graphics/java/android/graphics/drawable/GradientDrawable.java @@ -406,9 +406,9 @@ public class GradientDrawable extends Drawable { /** * <p>Sets the colors used to draw the gradient. Each color is specified as an * ARGB integer and the array must contain at least 2 colors.</p> - * <p><strong>Note</strong>: changing orientation will affect all instances + * <p><strong>Note</strong>: changing colors will affect all instances * of a drawable loaded from a resource. It is recommended to invoke - * {@link #mutate()} before changing the orientation.</p> + * {@link #mutate()} before changing the colors.</p> * * @param colors 2 or more ARGB colors * @@ -610,7 +610,7 @@ public class GradientDrawable extends Drawable { } /** - * <p>Changes this drawbale to use a single color instead of a gradient.</p> + * <p>Changes this drawable to use a single color instead of a gradient.</p> * <p><strong>Note</strong>: changing color will affect all instances * of a drawable loaded from a resource. It is recommended to invoke * {@link #mutate()} before changing the color.</p> |