From 9dd5dd0825d3a847cd1bb52f21b9ab5a50c2340e Mon Sep 17 00:00:00 2001 From: Jakub Skoczen Date: Thu, 18 Oct 2012 13:12:34 +0200 Subject: [PATCH] Fix typo in the property call --- cql.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 1.7.10.4