From c63657acad67667102f7d1d08910aa419bc24287 Mon Sep 17 00:00:00 2001 From: Henri DF Date: Fri, 19 Feb 2016 16:25:36 -0800 Subject: [PATCH] typoes --- lua/sysdig-parser.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lua/sysdig-parser.lua b/lua/sysdig-parser.lua index 3aeacbee..96b6ecd7 100644 --- a/lua/sysdig-parser.lua +++ b/lua/sysdig-parser.lua @@ -1,15 +1,13 @@ --[[ Sysdig grammar and parser. - Much of the scaffolding and helpers was deriverd Andre Murbach Maidl's Lua parser (https://github.com/andremm/lua-parser). + Much of the scaffolding and helpers was derived from Andre Murbach Maidl's Lua parser (https://github.com/andremm/lua-parser). Parses regular filters following the existing sysdig filter syntax (*), as well as "macro" definitions. Macro definitions are written like: inbound: (syscall.type=listen and evt.dir='>') or (syscall.type=accept and evt.dir='<') - (*) There currently one known difference with the syntax implemented in libsinsp: - - - In libsinsp, field names cannot start with 'a', 'o', or 'n'. With this parser they can + (*) There is currently one known difference with the syntax implemented in libsinsp: In libsinsp, field names cannot start with 'a', 'o', or 'n'. With this parser they can. --]]