diff options
author | John Spurlock <jspurlock@google.com> | 2013-06-03 15:50:43 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-06-03 15:50:44 +0000 |
commit | 0c2c62b29d191d41129e3dc5451f07ce0ef6985f (patch) | |
tree | d1414409d02f2a8e24a1b30565cb596690d30113 | |
parent | be22605d1eacfb4137b6984b72a3eda004b911a1 (diff) | |
parent | 84a369c33bfe8790c0dab879f11c115a88445f9a (diff) | |
download | frameworks_base-0c2c62b29d191d41129e3dc5451f07ce0ef6985f.zip frameworks_base-0c2c62b29d191d41129e3dc5451f07ce0ef6985f.tar.gz frameworks_base-0c2c62b29d191d41129e3dc5451f07ce0ef6985f.tar.bz2 |
Merge "Fix awkward wording in AppWidgetManager docs." into jb-mr2-dev
-rw-r--r-- | core/java/android/appwidget/AppWidgetManager.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/java/android/appwidget/AppWidgetManager.java b/core/java/android/appwidget/AppWidgetManager.java index 1166e4b..d1c7bec 100644 --- a/core/java/android/appwidget/AppWidgetManager.java +++ b/core/java/android/appwidget/AppWidgetManager.java @@ -529,9 +529,9 @@ public class AppWidgetManager { /** * Notifies the specified collection view in all the specified AppWidget instances - * to invalidate their currently data. + * to invalidate their data. * - * @param appWidgetIds The AppWidget instances for which to notify of view data changes. + * @param appWidgetIds The AppWidget instances to notify of view data changes. * @param viewId The collection view id. */ public void notifyAppWidgetViewDataChanged(int[] appWidgetIds, int viewId) { @@ -544,11 +544,11 @@ public class AppWidgetManager { } /** - * Notifies the specified collection view in all the specified AppWidget instance - * to invalidate it's currently data. + * Notifies the specified collection view in the specified AppWidget instance + * to invalidate its data. * - * @param appWidgetId The AppWidget instance for which to notify of view data changes. - * @param viewId The collection view id. + * @param appWidgetId The AppWidget instance to notify of view data changes. + * @param viewId The collection view id. */ public void notifyAppWidgetViewDataChanged(int appWidgetId, int viewId) { notifyAppWidgetViewDataChanged(new int[] { appWidgetId }, viewId); |