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

doc: module names must use snake_case (#7593)

This commit is contained in:
Stéphane Aulery 2020-12-27 11:23:43 +01:00 committed by GitHub
parent 21805ea2a5
commit 905a02ef1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1704,6 +1704,7 @@ fn main() {
```
* Module names should be short, under 10 characters.
* Module names must use `snake_case`.
* Circular imports are not allowed.
* You can have as many .v files in a module as you want.
* You can create modules anywhere.