diff --git a/README.md b/README.md index f13ac01..6f61a14 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Give a country, or a reference to a list of countries, that we will not allow to use CGI::ACL; # Don't allow the UK to connect to us - my $acl = CGI::ACL->new()->deny_country('UK'); + my $acl = CGI::ACL->new()->deny_country('GB'); # Don't allow any countries to connect to us (a sort of 'default deny') my $acl = CGI::ACL->new()->deny_country('*'); diff --git a/lib/CGI/ACL.pm b/lib/CGI/ACL.pm index 4a7c3f8..c1b4552 100644 --- a/lib/CGI/ACL.pm +++ b/lib/CGI/ACL.pm @@ -99,7 +99,7 @@ Give a country, or a reference to a list of countries, that we will not allow to use CGI::ACL; # Don't allow the UK to connect to us - my $acl = CGI::ACL->new()->deny_country('UK'); + my $acl = CGI::ACL->new()->deny_country('GB'); # Don't allow any countries to connect to us (a sort of 'default deny') my $acl = CGI::ACL->new()->deny_country('*');