Update README.md

This commit is contained in:
Doug Bird 2018-06-13 00:14:44 -07:00 committed by GitHub
parent 5a1ce77562
commit 9c6db021d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -80,11 +80,11 @@ Additionally, for convenience, some native programming language formats have als
$ composer require katmore/tld-enum
```
* access the list by using the `\TldList::TLD_LIST` class constant array
* access the list by using the `\TldEnum\TldList::TLD_LIST` class constant array
```php
<?php
print_r(\TldList::TLD_LIST); //an array with every IANA TLD
print_r(\TldEnum\TldList::TLD_LIST); //an array with every IANA TLD
```
The following example...