From d506e5ec63bfecd4cf8a3efe293f7781d0c3efb8 Mon Sep 17 00:00:00 2001 From: ysugimoto Date: Mon, 10 Jun 2024 02:27:14 +0900 Subject: [PATCH] fix some typo and format in formatter.md --- docs/formatter.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/formatter.md b/docs/formatter.md index 37006612..aa3f3911 100644 --- a/docs/formatter.md +++ b/docs/formatter.md @@ -143,7 +143,6 @@ Specify max characters for each line. The overflowed characters are printed at t > [!NOTE] > Inserting line-feed is judged for each expression. It means formatter does not split in the middle of a sentence. -``` You can prevent this formatting rule by providing `-1` value to this configuration. @@ -166,7 +165,7 @@ If condition example: ```vcl sub vcl_recv { - if (req.http.Foo == "bar" && req.http.Bar = "baz" && req.http.Baz == "foo") { + if (req.http.Header1 == "1" && req.http.Header2 = "2" && req.http.Header3 == "3" && req.http.Header4 == "4") { req.http.OK = "1"; } } @@ -187,7 +186,7 @@ sub vcl_recv { --- -### Explicit Declaration Concat +### Explicit String Concat **default: false**