summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorOleg Morozenkov <m@oleg.rocks>2018-03-10 15:36:34 +0300
committerOleg Morozenkov <m@oleg.rocks>2018-03-10 15:36:34 +0300
commita02363a26a629f2c5d94c95f31acc07cef8230d0 (patch)
tree564af89dd77c5473047b9569ec60d00dc3e4a28b /include
parentf26e8402cf886fbb49ef7047024d40b3fc2bfe17 (diff)
Fixes #41
Diffstat (limited to 'include')
-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/).