You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by jm...@apache.org on 2006/08/15 18:29:22 UTC

svn commit: r431660 - /incubator/xap/trunk/src/xap/session/DeclarativeArgumentParser.js

Author: jmargaris
Date: Tue Aug 15 11:29:22 2006
New Revision: 431660

URL: http://svn.apache.org/viewvc?rev=431660&view=rev
Log:
fixed isWhitespace to correct capitalization

Modified:
    incubator/xap/trunk/src/xap/session/DeclarativeArgumentParser.js

Modified: incubator/xap/trunk/src/xap/session/DeclarativeArgumentParser.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/session/DeclarativeArgumentParser.js?rev=431660&r1=431659&r2=431660&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/session/DeclarativeArgumentParser.js (original)
+++ incubator/xap/trunk/src/xap/session/DeclarativeArgumentParser.js Tue Aug 15 11:29:22 2006
@@ -165,7 +165,7 @@
 				parseResult._parseStatus = ParseResult.CLOSING_PAREN;
 				return parseResult;
 			}
-			else if (xap.util.Character.isWhitespace(c)){
+			else if (xap.util.Character.isWhiteSpace(c)){
 				; //trailing whitespace is ok
 			}
 			else{