Correct comment in example code.

Patch by: jat
Unreviewed


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@5413 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/javadoc/com/google/gwt/examples/NumberFormatExample.java b/user/javadoc/com/google/gwt/examples/NumberFormatExample.java
index ee4078a..96c29ba 100644
--- a/user/javadoc/com/google/gwt/examples/NumberFormatExample.java
+++ b/user/javadoc/com/google/gwt/examples/NumberFormatExample.java
@@ -26,7 +26,8 @@
     // Currency
     fmt = NumberFormat.getCurrencyFormat();
     formatted = fmt.format(123456.7899);
-    // prints $123,456.79 in the default locale
+    // prints US$123,456.79 in the default locale or $123,456.79 in the en_US
+    // locale
     GWT.log("Formatted currency is" + formatted, null);
     
     // Custom format