Fixed bad comment in JSONParser.
Suggested by: spoon
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@1960 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/json/client/JSONParser.java b/user/src/com/google/gwt/json/client/JSONParser.java
index ffda1c6..c4e4157 100644
--- a/user/src/com/google/gwt/json/client/JSONParser.java
+++ b/user/src/com/google/gwt/json/client/JSONParser.java
@@ -117,8 +117,8 @@
}-*/;
/**
- * This method converts the json string into either a String or a a by simply
- * evaluating the string in JavaScript.
+ * This method converts the json string into either a String or a
+ * JavaScriptObject by simply evaluating the string in JavaScript.
*/
private static native Object evaluate(String jsonString) /*-{
var x = eval('(' + jsonString + ')');