From bd05f8e4f7667f332fb2e24cc25829ba769f6418 Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 3 Nov 2015 18:12:22 +0300 Subject: [PATCH] Fix README example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 66ed874..fe584e8 100644 --- a/README.md +++ b/README.md @@ -52,8 +52,8 @@ Sometimes you might want to send a little bit complicated messages, with some op ```go // Send a selective force reply message. bot.SendMessage(user, "pong", &telebot.SendOptions{ - ForceReply: telebot.ForceReply{ - Require: true, + ReplyMarkup: telebot.ReplyMarkup{ + ForceReply: true, Selective: true, }, },