From 7305b2c401d715d60b1885d80c4aace53aff475d Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 27 Sep 2020 16:58:36 +0300 Subject: [PATCH] ci: fix for mut arg in cmd/tools/vdoc.v --- cmd/tools/vdoc.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tools/vdoc.v b/cmd/tools/vdoc.v index e4b51efcab..696803565f 100644 --- a/cmd/tools/vdoc.v +++ b/cmd/tools/vdoc.v @@ -463,7 +463,7 @@ fn (cfg DocConfig) gen_html(idx int) string { // generate toc first contents.writeln(doc_node_html(dcs.head, '', true, dcs.table)) for cn in dcs.contents { - cfg.write_content(&cn, &dcs, &contents) + cfg.write_content(&cn, &dcs, mut contents) if cn.attrs['parent'] == 'Constants' || cn.attrs['category'] == 'Methods' { continue }