From 089c93b61372836e1df4de633e7a76383a2666b4 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 15 Mar 2022 20:18:14 +0200 Subject: [PATCH] x: add a mostly empty vlib/x/x.v file, to workaround a `v doc` bug The bug is that `v doc` ignores README.md in a folder without .v files, leading to tree nodes with empty # links and no content. --- vlib/x/x.v | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 vlib/x/x.v diff --git a/vlib/x/x.v b/vlib/x/x.v new file mode 100644 index 0000000000..10a4b5ea01 --- /dev/null +++ b/vlib/x/x.v @@ -0,0 +1,3 @@ +module x + +pub const description = 'an empty module, used as a placeholder, for other modules'