Commit 7970b7ed authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

White space nits

parent 87cb4ae7
...@@ -7,7 +7,7 @@ server s1 { ...@@ -7,7 +7,7 @@ server s1 {
} -start } -start
varnish v1 -vcl+backend { varnish v1 -vcl+backend {
import ${vmod_debug}; import ${vmod_debug};
sub vcl_deliver { sub vcl_deliver {
...@@ -19,7 +19,7 @@ varnish v1 -vcl+backend { ...@@ -19,7 +19,7 @@ varnish v1 -vcl+backend {
varnish v1 -cliok "param.set pcre_match_limit 100" varnish v1 -cliok "param.set pcre_match_limit 100"
client c1 { client c1 {
txreq txreq
rxresp rxresp
expect resp.http.foo == 100 expect resp.http.foo == 100
} -run } -run
...@@ -27,7 +27,7 @@ client c1 { ...@@ -27,7 +27,7 @@ client c1 {
varnish v1 -cliok "param.set pcre_match_limit 200" varnish v1 -cliok "param.set pcre_match_limit 200"
client c1 { client c1 {
txreq txreq
rxresp rxresp
expect resp.http.foo == 200 expect resp.http.foo == 200
} -run } -run
...@@ -224,7 +224,7 @@ Description ...@@ -224,7 +224,7 @@ Description
Note that the comparison is case sensitive. Note that the comparison is case sensitive.
Example Example
| if (std.strstr(req.url, req.http.x-restrict)) { | if (std.strstr(req.url, req.http.x-restrict)) {
| ... | ...
| } | }
$Function TIME time(STRING s, TIME fallback) $Function TIME time(STRING s, TIME fallback)
...@@ -243,7 +243,7 @@ Description ...@@ -243,7 +243,7 @@ Description
| "784111777" | "784111777"
Example Example
| if (std.time(resp.http.last-modified, now) < now - 1w) { | if (std.time(resp.http.last-modified, now) < now - 1w) {
| ... | ...
| } | }
......
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