From 6a90c5b83143bfd9fa59bc676956dd03140fe4ee Mon Sep 17 00:00:00 2001 From: Will Budic Date: Sun, 9 Nov 2025 19:54:33 +1100 Subject: [PATCH] Spelling constants not constances. --- system/modules/CNFMeta.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.34.1