Apply lowerCamelCase to P2SHAddress in docs

This commit is contained in:
Trevin Hofmann 2015-02-04 00:31:49 -06:00
parent 7fd9e8ee64
commit 99c88c440a
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ A pay-to-script-hash multisignature Address can be instantiated from an array of
```javascript
// a 2-of-3 address from public keys
var P2SHAddress = new Address([publicKey1, publicKey2, publicKey3], 2);
var p2shAddress = new Address([publicKey1, publicKey2, publicKey3], 2);
```
## Validating an Address

View File

@ -67,7 +67,7 @@ var address = privateKey.toAddress();
```javascript
// Build a 2-of-3 address from public keys
var P2SHAddress = new bitcore.Address([publicKey1, publicKey2, publicKey3], 2);
var p2shAddress = new bitcore.Address([publicKey1, publicKey2, publicKey3], 2);
```
## Request a Payment