Change a script comment to use "code-block" directive

This commit is contained in:
Jon Siwek 2020-09-03 15:02:29 -07:00
parent 48e2445600
commit c7408482b4
4 changed files with 7 additions and 3 deletions

View file

@ -1,4 +1,8 @@
3.3.0-dev.241 | 2020-09-03 15:02:29 -0700
* Change a script comment to use "code-block" directive (Jon Siwek, Corelight)
3.3.0-dev.240 | 2020-09-02 20:51:13 -0700
* Improve CI benchmark script's error handling/messaging (Jon Siwek, Corelight)

View file

@ -1 +1 @@
3.3.0-dev.240
3.3.0-dev.241

2
doc

@ -1 +1 @@
Subproject commit 52ca9f0814aa33bd920a4b33d75dc48bb10f0728
Subproject commit f5075530427aca0ca1c5aa42fe9b746290e1ea4d

View file

@ -6,7 +6,7 @@ module GLOBAL;
## return a pattern with string set's elements OR'd together where the
## double-tilde was given. Examples:
##
## .. sourcecode:: zeek
## .. code-block:: zeek
##
## global r1 = set_to_regex(set("a", "b", "c"), "~~");
## # r1 = /^?(a|b|c)$?/