rename to vd

This commit is contained in:
ge
2025-07-03 21:30:14 +03:00
parent d87a33f26b
commit 330ee8599f
4 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View File

@@ -1,6 +1,6 @@
# Binaries for programs and plugins
main
vdocserve
vd
*.exe
*.exe~
*.so

View File

@@ -1,11 +1,11 @@
# V Documentation Server
# V documentation server
Synopsis:
```
generate and serve HTML documentation for V module
usage: vdocs [-l addr:port] [<dir>]
usage: vd [-l addr:port] [<dir>]
options:
-help print this help message and exit

2
v.mod
View File

@@ -1,5 +1,5 @@
Module {
name: 'vdocs'
name: 'vd'
description: 'Generate and serve V module documentation'
version: '0.1.0'
license: 'Unlicense'

View File

@@ -30,7 +30,7 @@ fn main() {
if flags.help {
println('generate and serve HTML documentation for V module')
println('')
println('usage: vdocs [-l addr:port] [<dir>]')
println('usage: vd [-l addr:port] [<dir>]')
println('')
println('options:')
println(' -help print this help message and exit')