Removed reply_prefix from examples

These methods now automatically add in reply_prefix in v3.
This commit is contained in:
Stawberri 2014-12-11 20:01:57 -08:00
parent 0a915b0a30
commit 3a350526b4

View file

@ -39,12 +39,12 @@ class MyBot < Ebooks::Bot
def on_mention(tweet)
# Reply to a mention
# reply(tweet, meta(tweet).reply_prefix + "oh hullo")
# reply(tweet, "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, "nice tweet")
end
end