Commit c75f8919 authored by Geoff Simmons's avatar Geoff Simmons

Doc fix the SYNOPSIS.

parent d9f0d00b
.. ..
.. NB: This file is machine generated, DO NOT EDIT! .. NB: This file is machine generated, DO NOT EDIT!
.. ..
.. Edit vmod.vcc and run make instead .. Edit ./vdfp_pipe.vcc and run make instead
.. ..
.. role:: ref(emphasis) .. role:: ref(emphasis)
...@@ -25,7 +25,7 @@ SYNOPSIS ...@@ -25,7 +25,7 @@ SYNOPSIS
import pipe; import pipe;
# Delivery processor object # Delivery processor object
new <obj> = exec.vdp(XXX) new <obj> = pipe.vdp(XXX)
<obj>.args(XXX) <obj>.args(XXX)
sub vcl_deliver { sub vcl_deliver {
...@@ -33,7 +33,7 @@ SYNOPSIS ...@@ -33,7 +33,7 @@ SYNOPSIS
} }
# Fetch processor object # Fetch processor object
new <obj> = exec.vfp(XXX) new <obj> = pipe.vfp(XXX)
<obj>.args(XXX) <obj>.args(XXX)
sub vcl_backend_response { sub vcl_backend_response {
......
...@@ -21,7 +21,7 @@ SYNOPSIS ...@@ -21,7 +21,7 @@ SYNOPSIS
import pipe; import pipe;
# Delivery processor object # Delivery processor object
new <obj> = exec.vdp(XXX) new <obj> = pipe.vdp(XXX)
<obj>.args(XXX) <obj>.args(XXX)
sub vcl_deliver { sub vcl_deliver {
...@@ -29,7 +29,7 @@ SYNOPSIS ...@@ -29,7 +29,7 @@ SYNOPSIS
} }
# Fetch processor object # Fetch processor object
new <obj> = exec.vfp(XXX) new <obj> = pipe.vfp(XXX)
<obj>.args(XXX) <obj>.args(XXX)
sub vcl_backend_response { sub vcl_backend_response {
......
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