From: Jakub Skoczen Date: Thu, 18 Oct 2012 11:12:34 +0000 (+0200) Subject: Fix typo in the property call X-Git-Url: http://git.indexdata.com/?p=cql-js-moved-to-github.git;a=commitdiff_plain;h=9dd5dd0825d3a847cd1bb52f21b9ab5a50c2340e;ds=sidebyside Fix typo in the property call --- diff --git a/cql.js b/cql.js index 3cd9028..1f9b126 100644 --- a/cql.js +++ b/cql.js @@ -143,7 +143,7 @@ CQLBoolean.prototype = { toString: function () { return (this.left.op ? '(' + this.left + ')' : this.left) + ' ' + this.op.toUpperCase() + - (this.modifiers.lenght > 0 ? '/' + this.modifiers.join('/') : '') + + (this.modifiers.length > 0 ? '/' + this.modifiers.join('/') : '') + ' ' + (this.right.op ? '(' + this.right + ')' : this.right);; }, toXCQL: function (n) {