Fix module name regex in example.

This commit is contained in:
Dillon Kearns 2023-01-19 08:28:53 -08:00
parent 8e5f2a6f11
commit 35ebe5b204

View File

@ -55,7 +55,7 @@ program =
moduleNameRegex : String
moduleNameRegex =
"([A-Z][a-zA-Z0-9_]*)(\\.([A-Z][a-zA-Z_0-9_]*))*"
"^[A-Z][a-zA-Z0-9_]*(\\.([A-Z][a-zA-Z0-9_]*))*$"
buildFile : List String -> Elm.File