From 738f555baedf0e9e89ff15e4bc755a25c07b213d Mon Sep 17 00:00:00 2001 From: Mark Stemm Date: Mon, 2 May 2016 11:32:33 -0700 Subject: [PATCH] Remove remaining Digwatch references. Remove remaining Digwatch references I noticed while getting up to speed. --- README.md | 2 +- userspace/falco/lua/compiler.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6fa554a6..6f8e8120 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ For now, local compilation and installation is the way to install (see "Building ## Configuring Falco -Digwatch is primarily configured via two files: a configuration file (such as the `falco.yaml` in this repository) and a rules file (such as the `falco_rules.conf` file in `rules/`). These two files are written to `/etc` after you install the Falco package. +Falco is primarily configured via two files: a configuration file (such as the `falco.yaml` in this repository) and a rules file (such as the `falco_rules.conf` file in `rules/`). These two files are written to `/etc` after you install the Falco package. ### Rules file diff --git a/userspace/falco/lua/compiler.lua b/userspace/falco/lua/compiler.lua index 2df747d7..b868699b 100644 --- a/userspace/falco/lua/compiler.lua +++ b/userspace/falco/lua/compiler.lua @@ -1,5 +1,5 @@ --[[ - Digwatch grammar and parser. + Falco grammar and parser. Much of the scaffolding and helpers was derived from Andre Murbach Maidl's Lua parser (https://github.com/andremm/lua-parser).