Numbers in module names are also permitted by the Phobos style guide

This commit is contained in:
Hackerpilot 2014-05-12 18:08:14 -07:00
parent 0aa1e20595
commit 1c87c48aa0
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class StyleChecker : BaseAnalyzer
{
enum varFunNameRegex = `^([\p{Ll}_][_\w\d]*|[\p{Lu}\d_]+)$`;
enum aggregateNameRegex = `^\p{Lu}[\w\d]*$`;
enum moduleNameRegex = `^\p{Ll}+$`;
enum moduleNameRegex = `^[\p{Ll}_\d]+$`;
this(string fileName)
{