From c77307881d29f73048686eb4d30d5bf0931c50aa Mon Sep 17 00:00:00 2001 From: iv8 <44664770+iv8@users.noreply.github.com> Date: Mon, 4 Mar 2019 15:24:55 +0800 Subject: [PATCH] fix errors --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fbe40e8..c16cb36 100644 --- a/README.md +++ b/README.md @@ -524,16 +524,16 @@ Telegram Bot API support new type Chat for message.chat. - Check the ```type``` attribute in ```Chat``` object: - ```python -if message.chat.type == “private”: +if message.chat.type == "private": # private chat message -if message.chat.type == “group”: +if message.chat.type == "group": # group chat message -if message.chat.type == “supergroup”: +if message.chat.type == "supergroup": # supergroup chat message -if message.chat.type == “channel”: +if message.chat.type == "channel": # channel message ```