diff options
author | Matthew Holt <mholt@users.noreply.github.com> | 2022-09-15 14:13:58 -0600 |
---|---|---|
committer | Matthew Holt <mholt@users.noreply.github.com> | 2022-09-15 14:13:58 -0600 |
commit | 49b7a252641639b25c6578b3682c8e441ba8a451 (patch) | |
tree | ab252a7fa0627004a4ad76a2249ae41f68f88a04 | |
parent | e6c58fdc085f8875361563551699bcf02e3ede8b (diff) |
Fix #4169 (correct e6c58fd)
-rw-r--r-- | caddyconfig/caddyfile/formatter.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/caddyconfig/caddyfile/formatter.go b/caddyconfig/caddyfile/formatter.go index 3981cd6..82581a3 100644 --- a/caddyconfig/caddyfile/formatter.go +++ b/caddyconfig/caddyfile/formatter.go @@ -153,7 +153,7 @@ func Format(input []byte) []byte { openBraceWritten = true nextLine() newLines = 0 - // prevent infinite nesting from ridiculous inputs (issue #4175) + // prevent infinite nesting from ridiculous inputs (issue #4169) if nesting < 10 { nesting++ } |