diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index 68e8a52a9c24d..f765620a2eb92 100644 --- a/core/java/android/app/Activity.java +++ b/core/java/android/app/Activity.java @@ -544,12 +544,12 @@ import java.util.List; * *
There are generally two kinds of persistent state than an activity + *
There are generally two kinds of persistent state that an activity * will deal with: shared document-like data (typically stored in a SQLite * database using a {@linkplain android.content.ContentProvider content provider}) * and internal state such as user preferences.
* - *For content provider data, we suggest that activities use a + *
For content provider data, we suggest that activities use an * "edit in place" user model. That is, any edits a user makes are effectively * made immediately without requiring an additional confirmation step. * Supporting this model is generally a simple matter of following two rules: