diff --git a/TelegramBots.wiki/FAQ.md b/TelegramBots.wiki/FAQ.md index eeac8dc7..a700c706 100644 --- a/TelegramBots.wiki/FAQ.md +++ b/TelegramBots.wiki/FAQ.md @@ -231,8 +231,6 @@ Your main spring boot class should look like this: ```java @SpringBootApplication -//Add this annotation to enable automatic bots initializing -@EnableTelegramBots public class YourApplicationMainClass { public static void main(String[] args) { @@ -246,7 +244,7 @@ public class YourApplicationMainClass { After that your bot will look like: ```java - //Standart Spring component annotation + //Standard Spring component annotation @Component public class YourBotClassName extends TelegramLongPollingBot { //Bot body.