summaryrefslogtreecommitdiff
path: root/include/tgbot/tgbot.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/tgbot/tgbot.h')
-rw-r--r--include/tgbot/tgbot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tgbot/tgbot.h b/include/tgbot/tgbot.h
index a6efd62..6639826 100644
--- a/include/tgbot/tgbot.h
+++ b/include/tgbot/tgbot.h
@@ -78,7 +78,7 @@
*
* Firstly you need to install some dependencies such as Boost and build tools such as CMake. On Debian-based distibutives you can do it with these commands:
* @code{.sh}
- * sudo apt-get install g++ make binutils cmake libssl-dev libboost-system-dev libboost-iostreams-dev
+ * sudo apt-get install g++ make binutils cmake libssl-dev libboost-system-dev
* @endcode
*
* To compile the library execute this commands:
@@ -95,7 +95,7 @@
*
* Without CMake:
* @code{.sh}
- * g++ telegram_bot.cpp -o telegram_bot --std=c++11 -I/usr/local/include -lTgBot -lboost_system -lboost_iostreams -lssl -lcrypto -lpthread
+ * g++ telegram_bot.cpp -o telegram_bot --std=c++11 -I/usr/local/include -lTgBot -lboost_system -lssl -lcrypto -lpthread
* @endcode
*
* You can use Docker to build and run your bot. Set the base image of your's Dockerfile to [reo7sp/tgbot-cpp](https://hub.docker.com/r/reo7sp/tgbot-cpp/).