From: Karen Etheridge Date: Fri, 14 Mar 2014 08:44:39 +0000 (+0100) Subject: correct spelling for "arisdottle" X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FModule-Metadata.git;a=commitdiff_plain;h=9a855c0e4e08016937bdde54d9b979202c80b571;hp=39197fd358409f273501c33f21b293f5ed17e730 correct spelling for "arisdottle" --- diff --git a/lib/Module/Metadata.pm b/lib/Module/Metadata.pm index ee2c740..6902a1a 100644 --- a/lib/Module/Metadata.pm +++ b/lib/Module/Metadata.pm @@ -47,14 +47,14 @@ my $PKG_ADDL_WORD_REGEXP = qr{ # the 2nd+ word in a package name }x; my $PKG_NAME_REGEXP = qr{ # match a package name - (?: :: )? # a pkg name can start with aristotle + (?: :: )? # a pkg name can start with arisdottle $PKG_FIRST_WORD_REGEXP # a package word (?: - (?: :: )+ ### aristotle (allow one or many times) + (?: :: )+ ### arisdottle (allow one or many times) $PKG_ADDL_WORD_REGEXP ### a package word )* # ^ zero, one or many times (?: - :: # allow trailing aristotle + :: # allow trailing arisdottle )? }x;