Skip to content

Commit

Permalink
Merge pull request #392 from austinpray/patch-1
Browse files Browse the repository at this point in the history
Adds missing commas
  • Loading branch information
indexzero committed Feb 6, 2015
2 parents e12b251 + 5154bd1 commit aa76df4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/providers/amazon.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ For all of the Amazon services, you create a client with the same options:
var client = require('pkgcloud').compute.createClient({
provider: 'amazon',
key: 'your-secret-key-id', // secret key
keyId: 'your-access-key-id' // access key id
keyId: 'your-access-key-id', // access key id
region: 'us-west-2' // region
});
```
Expand All @@ -22,7 +22,7 @@ var client = require('pkgcloud').compute.createClient({
var client = require('pkgcloud').storage.createClient({
provider: 'amazon',
key: 'your-secret-key-id', // secret key
keyId: 'your-access-key-id' // access key id
keyId: 'your-access-key-id', // access key id
region: 'us-west-2' // region
});
```
```

0 comments on commit aa76df4

Please sign in to comment.