Skip to content

Fix typos #84

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
4 changes: 2 additions & 2 deletions sdk/Eversign/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion sdk/Eversign/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
2 changes: 1 addition & 1 deletion sdk/Eversign/Recipient.php
Original file line number Diff line number Diff line change
Expand Up @@ -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")
*/
Expand Down