From fe34c94e0444e3bb867695b179963100436f6156 Mon Sep 17 00:00:00 2001 From: Jaiden Mispy <^_^@mispy.me> Date: Fri, 5 Dec 2014 23:43:58 +1000 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1627f3a..f8a05f0 100644 --- a/README.md +++ b/README.md @@ -66,17 +66,17 @@ class MyBot < Ebooks::Bot def on_follow(user) # Follow a user back - # follow(user[:screen_name]) + # follow(user.screen_name) end def on_mention(tweet) # Reply to a mention - # reply(tweet, meta(tweet)[:reply_prefix] + "oh hullo") + # reply(tweet, meta(tweet).reply_prefix + "oh hullo") end def on_timeline(tweet) # Reply to a tweet in the bot's timeline - # reply(tweet, meta(tweet)[:reply_prefix] + "nice tweet") + # reply(tweet, meta(tweet).reply_prefix + "nice tweet") end end