]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
datasets/doc: minor fixes and clarifications
authorVictor Julien <victor@inliniac.net>
Thu, 5 Sep 2019 08:59:33 +0000 (10:59 +0200)
committerVictor Julien <victor@inliniac.net>
Thu, 5 Sep 2019 13:01:42 +0000 (15:01 +0200)
doc/userguide/rules/datasets.rst

index f66f610b2d733f1bd4a0aeb0e7c08afeada210da..a32988ba679e1d23aaf2695d08f26813684285c3 100644 (file)
@@ -8,7 +8,7 @@ For example, to match against a dns black list called ``dns-bl``::
 
     dns.query; dataset:isset,dns-bl;
 
-These keywords are aware of transforms. So to look up a DNS query again
+These keywords are aware of transforms. So to look up a DNS query against
 a MD5 black list::
 
     dns.query; to_md5; dataset:isset,dns-bl;
@@ -53,12 +53,14 @@ Syntax::
 type <type>
   the data type: string, md5, sha256
 save <file name>
-  file name for saving the in memory data when Suricata exits
+  file name for saving the in-memory data when Suricata exits
 load <file name>
   file name for load the data when Suricata starts up
 state
   sets both 'save' and 'load' to the same value
 
+.. note:: 'load' or 'load' plus 'save' and 'state' cannot be mixed.
+
 datarep
 ~~~~~~~