diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index 3bdadc3d26e20..d6ddeb655f550 100644 --- a/core/java/android/app/Activity.java +++ b/core/java/android/app/Activity.java @@ -2844,7 +2844,7 @@ public class Activity extends ContextThemeWrapper * item has been selected. *
* It is not safe to hold onto the context menu after this method returns.
- * {@inheritDoc}
+ *
*/
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
}
diff --git a/docs/html/distribute/googleplay/promote/badges.jd b/docs/html/distribute/googleplay/promote/badges.jd
index c084e2c9775ba..0027f5906029e 100644
--- a/docs/html/distribute/googleplay/promote/badges.jd
+++ b/docs/html/distribute/googleplay/promote/badges.jd
@@ -61,7 +61,7 @@ var APP_LANGS = ['it','pt-br','pt-pt','nl','ko','ja','fr','es','es-419','en','de
// variables for creating 'try it out' demo button
var imagePath = "https://developer.android.com/images/brand/"
-var linkStart = "\n"
+ " \n";
// variables for creating code snippet
-var linkStartCode = "<a href=\"http://play.google.com/store/";
+var linkStartCode = "<a href=\"https://play.google.com/store/";
var imageStartCode = "\">\n"
+ " <img alt=\"";
// leaves opening for the alt text value
diff --git a/docs/html/training/sharing/send.jd b/docs/html/training/sharing/send.jd
index 15b38e50dc9bc..9cb8eac6af103 100644
--- a/docs/html/training/sharing/send.jd
+++ b/docs/html/training/sharing/send.jd
@@ -95,7 +95,7 @@ Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
-startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to));
+startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)));
The resulting dialog is shown in figure 1.