Skip to content

Commit

Permalink
docs: updated example markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Dec 10, 2024
1 parent 837dda8 commit 3ecb978
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EXAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2563,7 +2563,7 @@ const response = await smsClient.send({
from: FROM_NUMBER,
text: 'Hello from Vonage SMS API',
});
console.log(`Number of messages sent: ${response.messageCount}`););
console.log(`Number of messages sent: ${response.messageCount}`););
```

#### verifySignature
Expand All @@ -2577,7 +2577,7 @@ const { sig } = params;
sms.verifySignature(
sig,
{}, // request parameters
VONAGE_API_SIGNATURE_SECRET,
VONAGE_API_SIGNATURE_SECRET,
AlgorithmTypes.md5hash,
) === params.sig) {
console.log("Valid signature");
Expand Down

0 comments on commit 3ecb978

Please sign in to comment.