add tests for processing agreement / country functionality, 0.33
[Business-CreditCard.git] / CreditCard.pm
index 4fdcebd..cfc3be4 100644 (file)
@@ -5,7 +5,7 @@ use vars qw( @ISA $VERSION $Country );
 
 @ISA = qw( Exporter );
 
-$VERSION = "0.33_01";
+$VERSION = "0.33";
 
 $Country = 'US';
 
@@ -267,7 +267,7 @@ sub generate_last_digit {
 
 ## this (GPLed) code from Business::CCCheck is apparantly 4x faster than ours
 ## ref http://neilb.org/reviews/luhn.html#Comparison
-## maybe see if we can spped ours up a bit
+## maybe see if we can speed ours up a bit
 #  my @ccn = split('',$ccn);
 #  my $even = 0;
 #  $ccn = 0;