From: Will Budic Date: Sun, 9 Nov 2025 08:54:33 +0000 (+1100) Subject: Spelling constants not constances. X-Git-Url: https://lifelog.hopto.org/gitweb/?a=commitdiff_plain;h=6a90c5b83143bfd9fa59bc676956dd03140fe4ee;p=PerlCNF.git Spelling constants not constances. --- diff --git a/system/modules/CNFMeta.pm b/system/modules/CNFMeta.pm index 4b4efcd..fb4fa47 100644 --- a/system/modules/CNFMeta.pm +++ b/system/modules/CNFMeta.pm @@ -19,7 +19,7 @@ use constant { }; ### -# Returns the regular expression for any of the meta constances. +# Returns the regular expression for any of the meta constants. ## sub _meta { my $constance = shift; @@ -53,7 +53,7 @@ our $SQL_CNF_VAR_LENGTH = 2024; ### # All packages here are Perl required libraries not is in use CPAN's Exporter module. -# When requiring CNFMeta this static method should be called to get its methods and constances() +# When requiring CNFMeta this static method should be called to get its methods and constants() # imported into name space of your new package. # Caveat to such implementation is that on initial compile time syntax errors can not be apparent. # Advantage is that package name spaces are less convoluted. @@ -79,7 +79,7 @@ sub _import_into_this_package { # Execute via system shell. *{"${caller}::meta"} = \&_meta; *{"${caller}::SHELL"} = sub {return _meta("SHELL")}; - # Returns the regular expression for any of the meta constances. + # Returns the regular expression for any of the meta constants. *{"${caller}::ANN"} = \&ANN; *{"${caller}::DELIMITER"} = \&DELIMITER; *{"${caller}::WILDCARD"} = \&WILDCARD;