From 0d10a3f39c21f9c3b98b7a219283b35e87ac05e0 Mon Sep 17 00:00:00 2001 From: Henri DF Date: Sat, 13 Feb 2016 15:26:40 -0800 Subject: [PATCH] Fix multi-line comments --- lua/sysdig-parser.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/sysdig-parser.lua b/lua/sysdig-parser.lua index 2a279b13..720eac54 100644 --- a/lua/sysdig-parser.lua +++ b/lua/sysdig-parser.lua @@ -11,7 +11,7 @@ - In libsinsp, field names cannot start with 'a', 'o', or 'n'. With this parser they can -]]-- +--]] local parser = {} @@ -256,7 +256,7 @@ end Traverses the AST and replaces `in` relational expressions with a sequence of ORs. For example, `a.b in [1, 2]` is expanded to `a.b = 1 or a.b = 2` (in ASTs) -]]-- +--]] function expand_in(node) local t = node.type