Skip to content

Commit

Permalink
chore(docs): add missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
benweier committed Aug 7, 2021
1 parent 436d085 commit a7e8b69
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions MIGRATION_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ const blizzard = require('blizzard.js').initialize({
key: BLIZZARD_CLIENT_ID,
secret: BLIZZARD_CLIENT_SECRET,
origin: 'us', // optional
locale: 'en_US' // optional
token: '' // optional
});
locale: 'en_US', // optional
token: '', // optional
})
```

#### `v4` 👍
Expand All @@ -43,8 +43,8 @@ const wowClient = await wow.createInstance({
key: BLIZZARD_CLIENT_ID,
secret: BLIZZARD_CLIENT_SECRET,
origin: 'us', // optional
locale: 'en_US' // optional
token: '' // optional
locale: 'en_US', // optional
token: '', // optional
})
```

Expand All @@ -55,8 +55,8 @@ const wowClient = await blizzard.wow.createInstance({
key: BLIZZARD_CLIENT_ID,
secret: BLIZZARD_CLIENT_SECRET,
origin: 'us', // optional
locale: 'en_US' // optional
token: '' // optional
locale: 'en_US', // optional
token: '', // optional
})
```

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const wowClient = await wow.createInstance({
key: BLIZZARD_CLIENT_ID,
secret: BLIZZARD_CLIENT_SECRET,
origin: 'us', // optional
locale: 'en_US' // optional
token: '' // optional
locale: 'en_US', // optional
token: '', // optional
})
```

Expand All @@ -53,9 +53,9 @@ const wowClient = await blizzard.wow.createInstance({
key: BLIZZARD_CLIENT_ID,
secret: BLIZZARD_CLIENT_SECRET,
origin: 'us', // optional
locale: 'en_US' // optional
token: '' // optional
});
locale: 'en_US', // optional
token: '', // optional
})
```

#### API Methods
Expand Down

0 comments on commit a7e8b69

Please sign in to comment.