From 18b221af466a5826066d30ca580bd5bd05b9c03c Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Thu, 27 May 2010 06:41:59 -0700 Subject: Fix typo in EastAsianWidth javadoc The Javadoc had a missing close tag and also failed to mention the "start" parameter in the doc. Change-Id: I861d6646e82e1d49f23a09de8b68a61f81689f83 --- core/java/android/text/AndroidCharacter.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/java/android/text/AndroidCharacter.java b/core/java/android/text/AndroidCharacter.java index 05887c5..b150b6e 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 count bytes of dest with the - * East Asian Width from the first count chars of - * src. East Asian Width is calculated based on + * East Asian Width from count chars of src + * starting at start. East Asian Width is calculated based on * Unicode TR#11. Each entry - * in dest> will be one of {@link #EAST_ASIAN_WIDTH_NEUTRAL}, + * in dest 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}. -- cgit v1.1