Fix some "make doc" warnings and update some doc tests

This commit is contained in:
Daniel Thayer 2014-12-01 22:43:17 -06:00
parent 1e2ba6ebfb
commit cc7286b628
4 changed files with 4 additions and 5 deletions

View file

@ -14,6 +14,6 @@ event bro_init()
print fmt("contents of v1: %s", v1);
print fmt("length of v1: %d", |v1|);
print fmt("contents of v1: %s", v2);
print fmt("contents of v2: %s", v2);
print fmt("length of v2: %d", |v2|);
}

View file

@ -4,7 +4,7 @@ data_type_pattern_01.bro
event bro_init()
{
local test_string = "The quick brown fox jumped over the lazy dog.";
local test_string = "The quick brown fox jumps over the lazy dog.";
local test_pattern = /quick|lazy/;
if ( test_pattern in test_string )