Skip to content

Commit

Permalink
doc: Update smapi-sdk README.md (#687)
Browse files Browse the repository at this point in the history
Fix JS comments
  • Loading branch information
brollb committed Mar 22, 2021
1 parent 31039da commit a5cdb26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ask-smapi-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const smapiClient = new Alexa.StandardSmapiClientBuilder()

### List Skills
``` js
# To only retrieve response body
// To only retrieve response body
smapiClient.listSkillsForVendorV1(vendorId)
.then((response) => {
console.log(JSON.stringify(response));
Expand All @@ -82,7 +82,7 @@ smapiClient.listSkillsForVendorV1(vendorId)
console.log(JSON.stringify(err.response));
});

# To include response header and status code
// To include response header and status code
smapiClient.callListSkillsForVendorV1(vendorId)
.then((response) => {
console.log(response.header);
Expand Down

0 comments on commit a5cdb26

Please sign in to comment.