diff --git a/src/GeoIp2/Database/Reader.php b/src/GeoIp2/Database/Reader.php index fcc04a9..ffad303 100644 --- a/src/GeoIp2/Database/Reader.php +++ b/src/GeoIp2/Database/Reader.php @@ -8,13 +8,9 @@ use MaxMind\Db\Reader as DbReader; /** * Instances of this class provide a reader for the GeoIP2 database format. - * IP addresses can be looked up using the country - * and city methods. We also provide cityIspOrg - * and omni methods to ease compatibility with the web service - * client, although we may offer the ability to specify additional databases - * to replicate these web services in the future (e.g., the ISP/Org database). + * IP addresses can be looked up using the database specific methods. * - * **Usage** + * ## Usage ## * * The basic API for this class is the same for every database. First, you * create a reader object, specifying a file name. You then call the method @@ -25,7 +21,7 @@ use MaxMind\Db\Reader as DbReader; * the method you called. This model in turn contains multiple record classes, * each of which represents part of the data returned by the database. If * the database does not contain the requested information, the attributes - * on the record class will have a null value. + * on the record class will have a `null` value. * * If the address is not in the database, an * {@link \GeoIp2\Exception\AddressNotFoundException} exception will be