summaryrefslogtreecommitdiff
path: root/caddyconfig/caddyfile/dispenser.go
diff options
context:
space:
mode:
Diffstat (limited to 'caddyconfig/caddyfile/dispenser.go')
-rw-r--r--caddyconfig/caddyfile/dispenser.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/caddyconfig/caddyfile/dispenser.go b/caddyconfig/caddyfile/dispenser.go
index b37d232..91bd9a5 100644
--- a/caddyconfig/caddyfile/dispenser.go
+++ b/caddyconfig/caddyfile/dispenser.go
@@ -146,15 +146,15 @@ func (d *Dispenser) NextLine() bool {
//
// Proper use of this method looks like this:
//
-// for nesting := d.Nesting(); d.NextBlock(nesting); {
-// }
+// for nesting := d.Nesting(); d.NextBlock(nesting); {
+// }
//
// However, in simple cases where it is known that the
// Dispenser is new and has not already traversed state
// by a loop over NextBlock(), this will do:
//
-// for d.NextBlock(0) {
-// }
+// for d.NextBlock(0) {
+// }
//
// As with other token parsing logic, a loop over
// NextBlock() should be contained within a loop over