1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vdoc: add -comments and new comment merger (#11221)

This commit is contained in:
Leo Developer
2021-08-19 09:20:43 +02:00
committed by GitHub
parent 337c325109
commit 7bffabbce2
15 changed files with 208 additions and 53 deletions

View File

@ -0,0 +1,7 @@
module main
const (
source_root = 'temp'
)
fn funky()
funky - comment for function below

View File

@ -0,0 +1,6 @@
module main
const (
source_root = 'temp'
)
fn funky()

View File

@ -0,0 +1,8 @@
pub const (
source_root = 'temp'
)
// funky - comment for function below
pub fn funky() {
println('hi')
}