Fix a comment.
diff --git a/libcore/luni/src/main/java/java/util/Formatter.java b/libcore/luni/src/main/java/java/util/Formatter.java
index 0a4250d..1114786 100644
--- a/libcore/luni/src/main/java/java/util/Formatter.java
+++ b/libcore/luni/src/main/java/java/util/Formatter.java
@@ -1210,7 +1210,8 @@
 
             // 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':