From 0bbc5a5c6a8c760c70f770ce20a02223b7ee8f7a Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 16 Feb 2021 10:22:39 +0200 Subject: [PATCH] fmt: add a small comment about f.line_len --- vlib/v/fmt/fmt.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/fmt/fmt.v b/vlib/v/fmt/fmt.v index cbd4e0abfc..e80f7fb45f 100644 --- a/vlib/v/fmt/fmt.v +++ b/vlib/v/fmt/fmt.v @@ -25,7 +25,7 @@ pub mut: out strings.Builder indent int empty_line bool - line_len int + line_len int // the current line length, NB: it counts \t as 4 spaces, and starts at 0 after f.writeln buffering bool // disables line wrapping for exprs that will be analyzed later par_level int // how many parentheses are put around the current expression array_init_break []bool // line breaks after elements in hierarchy level of multi dimensional array