diff options
| author | Mike LeBeau <mlebeau@android.com> | 2010-03-11 09:21:08 -0800 |
|---|---|---|
| committer | Mike LeBeau <mlebeau@android.com> | 2010-03-11 09:21:08 -0800 |
| commit | 305de9dbda4e40d60ca99dda307ccd5e3c23e0a0 (patch) | |
| tree | 1a828b973e1c5c685f2adf0a68e452fd22c28938 | |
| parent | e8df25a9c6f9118e0136904883a777052c522cb0 (diff) | |
| download | frameworks_base-305de9dbda4e40d60ca99dda307ccd5e3c23e0a0.zip frameworks_base-305de9dbda4e40d60ca99dda307ccd5e3c23e0a0.tar.gz frameworks_base-305de9dbda4e40d60ca99dda307ccd5e3c23e0a0.tar.bz2 | |
Fix a variable name reference in Activity docs.
Change-Id: Ib0fd1c6b75f73a4470d2cb790884490a3efa8716
| -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 8695598..3c5a1c7 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 |
