OSDN Git Service

Fix a comment.
authorElliott Hughes <enh@google.com>
Tue, 12 Jan 2010 23:47:38 +0000 (15:47 -0800)
committerElliott Hughes <enh@google.com>
Tue, 12 Jan 2010 23:47:38 +0000 (15:47 -0800)
libcore/luni/src/main/java/java/util/Formatter.java

index 0a4250d..1114786 100644 (file)
@@ -1210,7 +1210,8 @@ public final class Formatter implements Closeable, Flushable {
 
             // There are only two format specifiers that matter: "%d" and "%s".
             // Nothing else is common in the wild. We fast-path these two to
-            // avoid the heavyweight machinery needed to cope with all the
+            // avoid the heavyweight machinery needed to cope with flags, width,
+            // and precision.
             if (token.isDefault()) {
                 switch (token.getConversionType()) {
                 case 's':