From b8d07179340b823d32a1a05426e691353903e990 Mon Sep 17 00:00:00 2001 From: Evan Charlton Date: Thu, 31 Jul 2014 09:09:54 -0700 Subject: [PATCH] Fix a small typo in javadocs Service#START_FLAG_RETRY has an extra word; remove it. Change-Id: I4743e2ea474c70fe5d31f1a4ef257f9752f8e823 --- core/java/android/app/Service.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/app/Service.java b/core/java/android/app/Service.java index 396774090515c..ec9960d5614bd 100644 --- a/core/java/android/app/Service.java +++ b/core/java/android/app/Service.java @@ -401,7 +401,7 @@ public abstract class Service extends ContextWrapper implements ComponentCallbac /** * This flag is set in {@link #onStartCommand} if the Intent is a - * a retry because the original attempt never got to or returned from + * retry because the original attempt never got to or returned from * {@link #onStartCommand(Intent, int, int)}. */ public static final int START_FLAG_RETRY = 0x0002;