summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Kenny Root <kroot@google.com> 2010-05-27 06:41:59 -0700
committer Kenny Root <kroot@google.com> 2010-05-27 06:41:59 -0700
commit18b221af466a5826066d30ca580bd5bd05b9c03c (patch)
tree56e5bcdfe11a1548554eeb53ea5b2b70f4822925
parent2723e09229ce916724861ab90b6b8fc7c9ea9f2e (diff)
Fix typo in EastAsianWidth javadoc
The Javadoc had a missing close <code> tag and also failed to mention the "start" parameter in the doc. Change-Id: I861d6646e82e1d49f23a09de8b68a61f81689f83
-rw-r--r--core/java/android/text/AndroidCharacter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/text/AndroidCharacter.java b/core/java/android/text/AndroidCharacter.java
index 05887c551d8d..b150b6ea992f 100644
--- a/core/java/android/text/AndroidCharacter.java
+++ b/core/java/android/text/AndroidCharacter.java
@@ -53,10 +53,10 @@ public class AndroidCharacter
/**
* Fill the first <code>count</code> bytes of <code>dest</code> with the
- * East Asian Width from the first <code>count</code> chars of
- * <code>src</code>. East Asian Width is calculated based on
+ * East Asian Width from <code>count</code> chars of <code>src</code>
+ * starting at <code>start</code>. East Asian Width is calculated based on
* <a href="http://unicode.org/reports/tr11/">Unicode TR#11</a>. Each entry
- * in <code>dest> will be one of {@link #EAST_ASIAN_WIDTH_NEUTRAL},
+ * in <code>dest</code> will be one of {@link #EAST_ASIAN_WIDTH_NEUTRAL},
* {@link #EAST_ASIAN_WIDTH_AMBIGUOUS}, {@link #EAST_ASIAN_WIDTH_HALF_WIDTH},
* {@link #EAST_ASIAN_WIDTH_FULL_WIDTH}, {@link #EAST_ASIAN_WIDTH_NARROW},
* or {@link #EAST_ASIAN_WIDTH_WIDE}.