diff --git a/README.md b/README.md
index b4439df..326f504 100644
--- a/README.md
+++ b/README.md
@@ -91,6 +91,7 @@ TelegramBot
* [.getChatAdministrators(chatId)](#TelegramBot+getChatAdministrators) ⇒ Promise
* [.getChatMembersCount(chatId)](#TelegramBot+getChatMembersCount) ⇒ Promise
* [.getChatMember(chatId, userId)](#TelegramBot+getChatMember) ⇒ Promise
+ * [.leaveChat(chatId)](#TelegramBot+leaveChat) ⇒ Promise
@@ -572,4 +573,16 @@ Use this method to get information about a member of a chat.
| chatId | Number
| String
| Unique identifier for the target group or username of the target supergroup |
| userId | String
| Unique identifier of the target user |
+
+
+### telegramBot.leaveChat(chatId) ⇒ Promise
+Leave a group, supergroup or channel.
+
+**Kind**: instance method of [TelegramBot](#TelegramBot)
+**See**: https://core.telegram.org/bots/api#leavechat
+
+| Param | Type | Description |
+| --- | --- | --- |
+| chatId | Number
| String
| Unique identifier for the target group or username of the target supergroup (in the format @supergroupusername) |
+
* * *