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

View File

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