diff --git a/readme.md b/readme.md index 63ee460..a3a2fe9 100644 --- a/readme.md +++ b/readme.md @@ -29,8 +29,8 @@ $ npm install --save birdwatch ```js var Birdwatch = require('birdwatch'); -const bw = new Birdwatch() - .feed('justinbieber') +new Birdwatch() + .feed('justinbieber') .feed('taylorswift13', {filterTags:['tagOne', 'tagTwo']}) .start() .then(tweets => { @@ -45,7 +45,7 @@ http://localhost:8417/birdwatch/tweets ``` ### Cached HTML Tweet -If birdwatch can't find an `html` string on the returned tweet data, (which is sometimes the default from the Twitter API), then one will be rebuilt and added for you via [tweet-patch](https://github.com/radiovisual/tweet-patch). This means the **plaintext** hashtags, user-mentions and hyperlinks are converted to twitter-ready HTML. ::heart_eyes:: (You're welcome) Example below. +If birdwatch can't find an `html` string on the returned tweet data, (which is sometimes the default from the Twitter API), then one will be rebuilt and added for you via [tweet-patch](https://github.com/radiovisual/tweet-patch). This means the **plaintext** hashtags, user-mentions and hyperlinks are converted back to twitter-ready markup for you. ::heart_eyes:: (You're welcome) Example below. ```js cached_tweets[0].text;