From 305de9dbda4e40d60ca99dda307ccd5e3c23e0a0 Mon Sep 17 00:00:00 2001 From: Mike LeBeau Date: Thu, 11 Mar 2010 09:21:08 -0800 Subject: [PATCH] Fix a variable name reference in Activity docs. Change-Id: Ib0fd1c6b75f73a4470d2cb790884490a3efa8716 --- core/java/android/app/Activity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index 86955983b4210..3c5a1c7cfb456 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 - * state. Most implementations will simply use {@link #onCreate} + * savedInstanceState. 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