From 5959cd9e53be055a78606a6c325d802247a98943 Mon Sep 17 00:00:00 2001 From: "Matt T. Proud" Date: Thu, 14 Mar 2013 17:05:38 -0700 Subject: [PATCH] Include Julius' feedback. --- rules/ast/printer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/ast/printer.go b/rules/ast/printer.go index a887cfd30..7e8a08d49 100644 --- a/rules/ast/printer.go +++ b/rules/ast/printer.go @@ -279,7 +279,7 @@ func (node *MatrixLiteral) NodeTreeToDotGraph() string { } func (node *StringLiteral) NodeTreeToDotGraph() string { - return fmt.Sprintf("%#p[label=\"'%v'\"];\n", node.str, node.str) + return fmt.Sprintf("%#p[label=\"'%v'\"];\n", node, node.str) } func (node *StringFunctionCall) NodeTreeToDotGraph() string {