diff --git a/README.md b/README.md index 4479d0e..4cd742e 100644 --- a/README.md +++ b/README.md @@ -216,7 +216,7 @@ $client->downloadRawDocumentToPath($document, "raw.pdf"); #### Get a list of documents or templates *Class: Client* -The Client class is also capable fo listing all available documents templates based on their status. Each method below returns an array of document objects. +The Client class is also able to list all available document templates based on their status. Each method below returns an array of document objects. ``` $client->getAllDocuments(); diff --git a/sdk/Eversign/Client.php b/sdk/Eversign/Client.php index 15d9f6b..b02ae9e 100644 --- a/sdk/Eversign/Client.php +++ b/sdk/Eversign/Client.php @@ -156,7 +156,7 @@ public function requestOAuthToken(OAuthTokenRequest $token_request) { } /** - * Sets a OAuth Access Token to beeing used as the access_key + * Sets a OAuth Access Token to be used as the access_key * * @return $oauthAccessToken */ @@ -345,7 +345,7 @@ public function getDraftTemplates() { */ public function sendReminderForDocument(Document $document, Signer $signer) { if (!$document->getDocumentHash() || !$document->getSigners()) { - throw new \Exception('Sending Reminders requires the Document Hash and an approriate Signer'); + throw new \Exception('Sending Reminders requires the Document Hash and an appropriate Signer'); } $parameters = [ diff --git a/sdk/Eversign/File.php b/sdk/Eversign/File.php index 29a3aa4..fb8c7df 100644 --- a/sdk/Eversign/File.php +++ b/sdk/Eversign/File.php @@ -82,7 +82,7 @@ class File { /** * Setting this Property will upload the File as soon as createDocument - * or uploadFile on the Client is called. Cannot be used in conjuction with other + * or uploadFile on the Client is called. Cannot be used in conjunction with other * File Links or Ids. After the Upload the fileId will be set automatically * @var string $filePath */ diff --git a/sdk/Eversign/Recipient.php b/sdk/Eversign/Recipient.php index 9230fb5..9943ac7 100644 --- a/sdk/Eversign/Recipient.php +++ b/sdk/Eversign/Recipient.php @@ -69,7 +69,7 @@ class Recipient { /** * This parameter can be used to specify a custom message (upon document delivery) for the current recipient. - * Please note that for the current recipient the general document message will be overriden by this parameter. + * Please note that for the current recipient the general document message will be overridden by this parameter. * @var string $message * @Type("string") */