From 6f0f0cbd6b06e81111fbbedea92fb6584a638e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Fri, 4 Mar 2011 01:23:47 +0000 Subject: [PATCH] Fix comments. --- src/util/PaperScript.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util/PaperScript.js b/src/util/PaperScript.js index bac204bf..efbc10c7 100644 --- a/src/util/PaperScript.js +++ b/src/util/PaperScript.js @@ -61,10 +61,10 @@ var PaperScript = new function() { } function handleOperator(operator, left, right) { - // Only replace operators with calls to paper.handleOperator if - // the left hand side is potentially an object. + // Only replace operators with calls to $operator if the left hand side + // is potentially an object. if (operators[operator] && isDynamic(left)) { - // Replace with paper.handleOperator(operator, left, right): + // Replace with call to $operator(left, operator, right): return ['call', ['name', '$operator'], [left, ['string', operator], right]]; }