diff --git a/core/java/android/text/Spanned.java b/core/java/android/text/Spanned.java
index b4622e0cf9049..a785d1b7d2c76 100644
--- a/core/java/android/text/Spanned.java
+++ b/core/java/android/text/Spanned.java
@@ -187,12 +187,11 @@ extends CharSequence
public int getSpanFlags(Object tag);
/**
- * Return the first offset greater than or equal to start
- * where a markup object of class type begins or ends,
- * or limit if there are no starts or ends greater than or
- * equal to start but less than limit. Specify
- * null or Object.class for the type if you want every
- * transition regardless of type.
+ * Return the first offset greater than start where a markup
+ * object of class type begins or ends, or limit
+ * if there are no starts or ends greater than start but less
+ * than limit. Specify null or Object.class for
+ * the type if you want every transition regardless of type.
*/
public int nextSpanTransition(int start, int limit, Class type);
}