Commit c1d73d3e authored by Geoff Simmons's avatar Geoff Simmons

Doc fix.

parent fc5f43da
...@@ -411,10 +411,10 @@ Example:: ...@@ -411,10 +411,10 @@ Example::
sub vcl_init { sub vcl_init {
new myset = selector.set(); new myset = selector.set();
set.add("foo"); myset.add("foo");
set.add("bar"); myset.add("bar");
set.add("baz"); myset.add("baz");
set.create_stats(); myset.create_stats();
} }
......
...@@ -380,10 +380,10 @@ Example:: ...@@ -380,10 +380,10 @@ Example::
sub vcl_init { sub vcl_init {
new myset = selector.set(); new myset = selector.set();
set.add("foo"); myset.add("foo");
set.add("bar"); myset.add("bar");
set.add("baz"); myset.add("baz");
set.create_stats(); myset.create_stats();
} }
$Method BOOL .match(STRING) $Method BOOL .match(STRING)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment