[master] 6dcecde52 spelling: preceded

Poul-Henning Kamp phk at FreeBSD.org
Mon Aug 19 12:44:11 UTC 2024


commit 6dcecde5231fa847b4ca14863bd0cd4a435727ee
Author: Josh Soref <2119212+jsoref at users.noreply.github.com>
Date:   Wed Aug 7 08:31:00 2024 -0400

    spelling: preceded
    
    Signed-off-by: Josh Soref <2119212+jsoref at users.noreply.github.com>

diff --git a/bin/varnishtest/tests/v00020.vtc b/bin/varnishtest/tests/v00020.vtc
index 51ac0f09f..86268bd80 100644
--- a/bin/varnishtest/tests/v00020.vtc
+++ b/bin/varnishtest/tests/v00020.vtc
@@ -432,12 +432,12 @@ varnish v1 -errvcl {'||' must be followed by BOOL, found REAL.} {
 	sub vcl_recv { if (0 || std.random(0,1)) { } }
 }
 
-varnish v1 -errvcl {'&&' must be preceeded by BOOL, found REAL.} {
+varnish v1 -errvcl {'&&' must be preceded by BOOL, found REAL.} {
 	import std;
 	sub vcl_recv { if (std.random(0,1) && 0) { } }
 }
 
-varnish v1 -errvcl {'||' must be preceeded by BOOL, found REAL.} {
+varnish v1 -errvcl {'||' must be preceded by BOOL, found REAL.} {
 	import std;
 	sub vcl_recv { if (std.random(0,1) || 0) { } }
 }


More information about the varnish-commit mailing list