From e46ec08e4e18fe0b8e18a1d33760b6e52f4a6842 Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Tue, 23 Dec 2014 11:18:25 -0500 Subject: [PATCH] Fixed typos in guide index --- docs/guide/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guide/index.md b/docs/guide/index.md index a426dd5..023b2a6 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -1,6 +1,6 @@ # Bitcore v0.8 -Welcome to the documentation for bictore, a pure and powerful JavaScript Bitcoin API. +Welcome to the documentation for bitcore, a pure and powerful JavaScript Bitcoin API. ## Principles @@ -69,7 +69,7 @@ var uri = new bitcore.URI(paymentInfo).toString(); ## Create a Transaction ``` var transaction = new Transaction() - .from(utxos) // Feed information about what unspend outputs one can use + .from(utxos) // Feed information about what unspent outputs one can use .to(address, amount) // Add an output with the given amount of satoshis .change(address) // Sets up a change address where the rest of the funds will go .sign(privkeySet) // Signs all the inputs it can @@ -80,7 +80,7 @@ var transaction = new Transaction() var peer = new Peer('5.9.85.34'); peer.on('inv', function(message) { - // new invetory + // new inventory }); peer.connect();