From 905a02ef1a8e16c436944a781c48ae8f8b9ceafe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Aulery?= Date: Sun, 27 Dec 2020 11:23:43 +0100 Subject: [PATCH] doc: module names must use snake_case (#7593) --- doc/docs.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/docs.md b/doc/docs.md index 9d03dd1f39..0fe01b3a4b 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -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.