diff options
| author | Jeff Brown <jeffbrown@android.com> | 2014-03-11 00:06:24 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-03-11 00:06:25 +0000 |
| commit | a41ddccdc67ace7c9363efebbf6e51710928ce12 (patch) | |
| tree | cfe56057d77d1330915799199600708bc02de20e /core/java/android/view/View.java | |
| parent | c3f5d694324fbe2831405ce60bc43bd0d0183d07 (diff) | |
| parent | bd88de46a126c1e6dfc84ba6c1f942f51fe57582 (diff) | |
| download | frameworks_base-a41ddccdc67ace7c9363efebbf6e51710928ce12.zip frameworks_base-a41ddccdc67ace7c9363efebbf6e51710928ce12.tar.gz frameworks_base-a41ddccdc67ace7c9363efebbf6e51710928ce12.tar.bz2 | |
Merge "Fixed typo errors in documentation"
Diffstat (limited to 'core/java/android/view/View.java')
| -rw-r--r-- | core/java/android/view/View.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index 83610c3..bdf4141 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -10098,7 +10098,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * by the layout system and should not generally be called otherwise, because the property * may be changed at any time by the layout. * - * @param left The bottom of this view, in pixels. + * @param left The left of this view, in pixels. */ public final void setLeft(int left) { if (left != mLeft) { @@ -10165,7 +10165,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * by the layout system and should not generally be called otherwise, because the property * may be changed at any time by the layout. * - * @param right The bottom of this view, in pixels. + * @param right The right of this view, in pixels. */ public final void setRight(int right) { if (right != mRight) { |
