From 4b5e070e0a6bd1d4688de2e529383a2acce74ead Mon Sep 17 00:00:00 2001 From: Stephen Hoogendijk Date: Thu, 25 Jun 2015 11:51:15 +0200 Subject: [PATCH] Typo fix readme.md --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2ab4bfc51..28e4cb88f 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,9 @@ It's also possible to create a client from a DSN: $database = InfluxDB\Client::fromDSN(sprintf('influxdb://user:pass@%s:%s/%s', $host, $port, $dbname)); // get the client to retrieve other databases - $client = $database->getClient(); -```php + $client = $database->getClient(); + +``` ### Reading @@ -52,7 +53,8 @@ It's also possible to use the QueryBuilder object. This is a class that simplifi ->select('cpucount') ->from('test_metric') ->limit(2) - ->getResultSet()->getPoints(); + ->getResultSet() + ->getPoints(); ``` ### Writing data @@ -130,6 +132,6 @@ Some functions are too general for a database. So these are available in the cli ## Changelog -0.1 +####0.1 ------ -Initial release \ No newline at end of file +* Initial release \ No newline at end of file