From 01069be8d89d77c0789b68160016e6d00c2ad730 Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Thu, 11 Dec 2014 13:34:12 -0500 Subject: [PATCH] PrivateKey: Fix typo --- docs/PrivateKey.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/PrivateKey.md b/docs/PrivateKey.md index bbf51b390..4b6cf7be1 100644 --- a/docs/PrivateKey.md +++ b/docs/PrivateKey.md @@ -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)){ ... }