PrivateKey: Fix typo

This commit is contained in:
Braydon Fuller 2014-12-11 13:34:12 -05:00
parent 5b0bedee6c
commit 01069be8d8
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ The code to do these validations looks like this:
```javascript
// validate an address
if (PrivateKey.isValid(input){
if (PrivateKey.isValid(input)){
...
}