diff --git a/.gitignore b/.gitignore
index 4d9e735..ec8484f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,6 @@
# Binaries for programs and plugins
main
-vdocserve
+vd
*.exe
*.exe~
*.so
diff --git a/README.md b/README.md
index cffed5f..59cf27b 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
-# V Documentation Server
+# V documentation server
Synopsis:
```
generate and serve HTML documentation for V module
-usage: vdocs [-l addr:port] [
]
+usage: vd [-l addr:port] []
options:
-help print this help message and exit
diff --git a/v.mod b/v.mod
index adc1472..84bf268 100644
--- a/v.mod
+++ b/v.mod
@@ -1,5 +1,5 @@
Module {
- name: 'vdocs'
+ name: 'vd'
description: 'Generate and serve V module documentation'
version: '0.1.0'
license: 'Unlicense'
diff --git a/vdocs.v b/vd.v
similarity index 97%
rename from vdocs.v
rename to vd.v
index 89ab636..40bc4e0 100644
--- a/vdocs.v
+++ b/vd.v
@@ -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] []')
+ println('usage: vd [-l addr:port] []')
println('')
println('options:')
println(' -help print this help message and exit')