From 7ed8b8ab579df272cecca955a36213c4d33ae924 Mon Sep 17 00:00:00 2001 From: Steve Saldivar Date: Thu, 9 May 2013 09:52:54 -0700 Subject: [PATCH] fixed error in example --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 14c60f5..dbe209d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ LoyaltyBot A TwitchTV viewer reward system -Written in Node and JavaScript +Written in JavaScript and Node Overview -------- @@ -34,7 +34,7 @@ example.js ````javascript var loyaltybot = require('./../lib/initialize.js'); -LoyaltyBot.initialize({ +loyaltybot.initialize({ // twitch info twitch : { channel : 'loyalty', @@ -42,7 +42,7 @@ LoyaltyBot.initialize({ subscribers : 'https://spreadsheets.google.com/feeds/list/****/od6/public/basic?alt=json' }, - // currency system + // currency info currency : { name : 'Points', payrate : 15, @@ -53,7 +53,7 @@ LoyaltyBot.initialize({ website : 'http://www.loyaltypoints.com' }, - // optional + // optional features commands: true }); ````