diff options
| author | 2010-03-11 09:22:18 -0800 | |
|---|---|---|
| committer | 2010-03-11 09:22:18 -0800 | |
| commit | 84eb8d2a7de0a2cec02516b9fb2a61fde536b59c (patch) | |
| tree | b100743383306136c6fd68412ea0265a8898a847 | |
| parent | 4bb75b9e354fb39e7be5e8295c61dd00e8d59afa (diff) | |
| parent | 305de9dbda4e40d60ca99dda307ccd5e3c23e0a0 (diff) | |
Merge "Fix a variable name reference in Activity docs."
| -rw-r--r-- | core/java/android/app/Activity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index 86955983b421..3c5a1c7cfb45 100644 --- a/core/java/android/app/Activity.java +++ b/core/java/android/app/Activity.java @@ -819,7 +819,7 @@ public class Activity extends ContextThemeWrapper /** * This method is called after {@link #onStart} when the activity is * being re-initialized from a previously saved state, given here in - * <var>state</var>. Most implementations will simply use {@link #onCreate} + * <var>savedInstanceState</var>. Most implementations will simply use {@link #onCreate} * to restore their state, but it is sometimes convenient to do it here * after all of the initialization has been done or to allow subclasses to * decide whether to use your default implementation. The default |