From 6964a7dbe7e30cc363cfe4d7e732d3488485b4d5 Mon Sep 17 00:00:00 2001 From: ufe-pr Date: Mon, 31 May 2021 13:15:35 +0100 Subject: [PATCH] Corrected some typos --- Ask-Right.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Ask-Right.md b/Ask-Right.md index 1a76930..bb00bcd 100644 --- a/Ask-Right.md +++ b/Ask-Right.md @@ -8,7 +8,7 @@ Before we begin, please try to keep one rule of thumb in mind: Putting effort in it makes it easier for others to actually help you and it's more pleasant for both sides ;) -Errors/question can appear on a lot of different levels and need to be addressed differently. +Errors/questions can appear on a lot of different levels and need to be addressed differently. ## General Python questions & Questions about other libraries @@ -19,17 +19,17 @@ Please be aware that neither the PTBs user group on Telegram nor the issue track ## Design Questions -Many questions are not about how to use a specific method/class of PTB, but more along the lines "If a users does this, I want my bot do react like that. What can I use for that?" -When asking how to build a specific functionality with PTB, please try describe it precisely and include all relevant information. Answering the following questions usually is a good starting point: +Many questions are not about how to use a specific method/class of PTB, but more along the lines "If a users does this, I want my bot to react like that. What can I use for that?". +When asking how to build a specific functionality with PTB, please try to describe it precisely and include all relevant information. Answering the following questions usually is a good starting point: 1. What kind of event should trigger the functionality? Possible triggers are e.g. * User sends a message containing a command/specific expression/an image/… - * A new members join the group + * A new member joins the group * A user presses an `InlineKeyboardButton` * A specific time of the day * Bot starts running 2. What kind of chat is the functionality supposed to work in? A private chat with the bot? A group/supergroup? Or a channel? -3. Is you Bot an Admin in that Chat? +3. Is your Bot an Admin in that Chat? 4. How do you want your bot to react? ### A Bad Example: @@ -38,7 +38,7 @@ When asking how to build a specific functionality with PTB, please try describe ### A Good Example: -> When a new user enters a group, where my bot is an admin, I would like to have verify that they are not spam bots by having them fill out some kind of captcha, preferably in the private chat with the bot. If the captcha is not filled out correctly within one day, they should be banned. How can I set up something like this? +> When a new user enters a group, where my bot is an admin, I would like to verify that they are not spam bots by having them fill out some kind of captcha, preferably in the private chat with the bot. If the captcha is not filled out correctly within one day, they should be banned. How can I set up something like this? ## Questions on PTB