diff --git a/README.md b/README.md index fa3e93b..f480a10 100644 --- a/README.md +++ b/README.md @@ -30,36 +30,34 @@ var acct = bank.account(opt); // login before doing anything acct.login(function(err){ - -}); - -// get info about your card -// does not give the whole number -acct.card(function(err, card){ - console.log('card', card); -}); - -// get your current account balances -acct.balance(function(err, balance){ - console.log('balance', balance); -}); - -// get information about your linked accounts -// soon you will be able to trigger transfers -// to and from these -acct.external(function(err, accts){ - console.log('linked accounts', accts); -}); - -// get a list of all transactions -// includes name, addr, amount, tip, coordinates, time, etc. -acct.transactions(function(err, trans){ - console.log('transactions', trans); -}); - -// this isnt really all that useful -acct.logout(function(err){ - + // get info about your card + // does not give the whole number + acct.card(function(err, card){ + console.log('card', card); + }); + + // get your current account balances + acct.balance(function(err, balance){ + console.log('balance', balance); + }); + + // get information about your linked accounts + // soon you will be able to trigger transfers + // to and from these + acct.external(function(err, accts){ + console.log('linked accounts', accts); + }); + + // get a list of all transactions + // includes name, addr, amount, tip, coordinates, time, etc. + acct.transactions(function(err, trans){ + console.log('transactions', trans); + }); + + // this isnt really all that useful + acct.logout(function(err){ + + }); }); ```