Commit 79f4c293 authored by Lasse Karstensen's avatar Lasse Karstensen

Document how comments work in VCL.

This was mentioned in the user guide, but not in the man
page itself.

Pointed out by:		Brett Fitzgerald
parent f38f4460
......@@ -166,6 +166,21 @@ Example::
std.log("foo");
}
Comments
--------
Single lines of VCL can be commented out using // or #. Multi-line blocks can
be commented out with \/\* block \/\*.
Example::
sub vcl_recv {
// Single line of out-commented VCL.
# Another way of commenting out a single line.
/*
Multi-line block of commented-out VCL.
*/
}
Backend definition
......
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