From cce7db078a3fe47e439e28b279d6c884e3e22bfb Mon Sep 17 00:00:00 2001 From: zagrad Date: Sat, 16 May 2020 18:26:31 +0200 Subject: [PATCH] Fix some tiny typos in README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 465e738..0e72982 100644 --- a/README.md +++ b/README.md @@ -128,15 +128,15 @@ be sure it works before asking Let's Encrypt to validate ownership. For a HTTP challenge test call: ```php if (!$client->selfTest($authorization, Client::VALIDATION_HTTP)) { - throw new \Exception('Count not verify ownership via HTTP'); + throw new \Exception('Could not verify ownership via HTTP'); } ``` For a DNS test call: ```php -if (!$client->selfTest($authorization, Client::VALIDATON_DNS)) { - throw new \Exception('Count not verify ownership via DNS'); +if (!$client->selfTest($authorization, Client::VALIDATION_DNS)) { + throw new \Exception('Could not verify ownership via DNS'); } sleep(30); // this further sleep is recommended, depending on your DNS provider, see below ``` @@ -204,4 +204,4 @@ file_put_contents('private.key', $certificate->getPrivateKey()); ### Who is using it? Are you using this package, would love to know. Please send a PR to enlist your project or company. -- [Afosto SaaS BV](https://afosto.com) \ No newline at end of file +- [Afosto SaaS BV](https://afosto.com)