]> lifelog.hopto.org Git - PerlCNF.git/commitdiff
Spelling constants not constances.
authorWill Budic <redacted>
Sun, 9 Nov 2025 08:54:33 +0000 (19:54 +1100)
committerWill Budic <redacted>
Sun, 9 Nov 2025 08:54:33 +0000 (19:54 +1100)
system/modules/CNFMeta.pm

index 4b4efcdc83110bef443f5dbd8e653757e7ccda22..fb4fa47209d79ea12b05ae0e7ff0435a3175c970 100644 (file)
@@ -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;