From d646d0e772f7e06d97eb667430ce63788a0cb248 Mon Sep 17 00:00:00 2001 From: Yosi Attias Date: Fri, 29 Apr 2016 23:43:16 +0300 Subject: [PATCH] Updating comment of NewExpression --- tick/stateful/expr.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/tick/stateful/expr.go b/tick/stateful/expr.go index d774ee5117..11b92792d6 100644 --- a/tick/stateful/expr.go +++ b/tick/stateful/expr.go @@ -30,8 +30,6 @@ type expression struct { // For example: // Given a BinaryNode{ReferNode("value"), NumberNode{Float64:10}} during runtime // we can find the type of "value" and find the most matching comparison function - (float64,float64) or (int64,float64) -// -// If the given node type isn't supported for compilation we will fallback to "NewStatefulExpr" func NewExpression(node tick.Node) (Expression, error) { nodeEvaluator, err := createNodeEvaluator(node) if err != nil {