Skip to content

Commit

Permalink
Fixing more typo's
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfzdotnet committed Mar 2, 2014
2 parents a6f8819 + 28af261 commit 88fe478
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ $client = new \Tmdb\Client($token, null, true);
If you want to add some caching capabilities ( currently an implementation of the `GuzzleCachePlugin` );

```php
$client->setCaching(true, '/tmp/php-tmdb-api';
$client->setCaching(true, '/tmp/php-tmdb-api');
```

_This relies on max-age headers being sent back from TMDB, see the [documentation of the CachePlugin](http://guzzle.readthedocs.org/en/latest/plugins/cache-plugin.html)._
Expand Down Expand Up @@ -130,7 +130,7 @@ _This relies on max-age headers being sent back from TMDB, see the [documentatio
If you want to add some logging capabilities ( currently an implementation of the `GuzzleLogPlugin`, requires `monolog/monolog`);

```php
$client->setLogging(true, '/tmp/php-tmdb-api.log';
$client->setLogging(true, '/tmp/php-tmdb-api.log');
```

Then you pass this client onto one of the many repositories and do some work on it.
Expand Down

0 comments on commit 88fe478

Please sign in to comment.