From 85385dedf58404b588af851215ad83dc3130613c Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Sat, 23 Sep 2017 11:52:05 +0200 Subject: [PATCH] Remove leading namespace slashes in README This makes it consistent with the middle line and is nicer to read. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a95fc7a..390271e 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,9 @@ Note that this repository is currently under development, additional classes and ## Getting Started ```php -$key = new \Cloudflare\API\Auth\APIKey('user@example.com', 'apiKey'); +$key = new Cloudflare\API\Auth\APIKey('user@example.com', 'apiKey'); $adapter = new Cloudflare\API\Adapter\Guzzle($key); -$user = new \Cloudflare\API\Endpoints\User($adapter); +$user = new Cloudflare\API\Endpoints\User($adapter); echo $user->getUserID(); ```