Skip to content

Commit e04bacd

Browse files
committed
Removed uneeded comments
1 parent f2fb987 commit e04bacd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/UniversalTelegramBot.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ struct telegramMessage {
5858
float longitude;
5959
float latitude;
6060
int update_id;
61-
int message_id; // added message id
61+
int message_id;
6262

6363
int reply_to_message_id;
6464
String reply_to_text;
@@ -85,17 +85,17 @@ class UniversalTelegramBot {
8585
bool getMe();
8686

8787
bool sendSimpleMessage(const String& chat_id, const String& text, const String& parse_mode);
88-
bool sendMessage(const String& chat_id, const String& text, const String& parse_mode = "", int message_id = 0); // added message id
88+
bool sendMessage(const String& chat_id, const String& text, const String& parse_mode = "", int message_id = 0);
8989
bool sendMessageWithReplyKeyboard(const String& chat_id, const String& text,
9090
const String& parse_mode, const String& keyboard,
9191
bool resize = false, bool oneTime = false,
9292
bool selective = false);
9393
bool sendMessageWithInlineKeyboard(const String& chat_id, const String& text,
94-
const String& parse_mode, const String& keyboard, int message_id = 0); // added message id
94+
const String& parse_mode, const String& keyboard, int message_id = 0);
9595

9696
bool sendChatAction(const String& chat_id, const String& text);
9797

98-
bool sendPostMessage(JsonObject payload, bool edit = false); // added message id option to send an editMessageText command
98+
bool sendPostMessage(JsonObject payload, bool edit = false);
9999
String sendPostPhoto(JsonObject payload);
100100
String sendPhotoByBinary(const String& chat_id, const String& contentType, int fileSize,
101101
MoreDataAvailable moreDataAvailableCallback,

0 commit comments

Comments
 (0)