diff --git a/README.md b/README.md index a8833616..0174bfa6 100644 --- a/README.md +++ b/README.md @@ -30,10 +30,10 @@ 2. Initialise the `TELOXIDE_TOKEN` environmental variable to your token: ```bash # Unix -$ export TELOXIDE_TOKEN=MyAwesomeToken +$ export TELOXIDE_TOKEN= # Windows -$ set TELOXITE_TOKEN=MyAwesomeToken +$ set TELOXITE_TOKEN= ``` 3. Be sure that you are up to date: ```bash @@ -82,7 +82,7 @@ async fn main() { ```bash git clone https://github.com/teloxide/teloxide.git cd teloxide/examples/ping_pong_bot -TELOXIDE_TOKEN=MyAwesomeToken cargo run +TELOXIDE_TOKEN= cargo run ``` @@ -151,7 +151,7 @@ async fn main() { ```bash git clone https://github.com/teloxide/teloxide.git cd teloxide/examples/simple_commands_bot -TELOXIDE_TOKEN=MyAwesomeToken cargo run +TELOXIDE_TOKEN= cargo run ``` @@ -248,7 +248,7 @@ async fn main() { ```bash git clone https://github.com/teloxide/teloxide.git cd teloxide/examples/guess_a_number_bot -TELOXIDE_TOKEN=MyAwesomeToken cargo run +TELOXIDE_TOKEN= cargo run ``` diff --git a/src/lib.rs b/src/lib.rs index 1fb02a2c..20cc3dea 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,10 +25,10 @@ //! variable to your token: //! ```text //! # Unix -//! $ export TELOXIDE_TOKEN=MyAwesomeToken +//! $ export TELOXIDE_TOKEN= //! //! # Windows -//! $ set TELOXITE_TOKEN=MyAwesomeToken +//! $ set TELOXITE_TOKEN= //! ``` //! //! 3. Be sure that you are up to date: @@ -79,7 +79,7 @@ //! ```text //! git clone https://github.com/teloxide/teloxide.git //! cd teloxide/examples/ping_pong_bot -//! TELOXIDE_TOKEN=MyAwesomeToken cargo run +//! TELOXIDE_TOKEN= cargo run //! ``` //! //! @@ -162,7 +162,7 @@ //! ```text //! git clone https://github.com/teloxide/teloxide.git //! cd teloxide/examples/simple_commands_bot -//! TELOXIDE_TOKEN=MyAwesomeToken cargo run +//! TELOXIDE_TOKEN= cargo run //! ``` //! //! @@ -281,7 +281,7 @@ //! ```text //! git clone https://github.com/teloxide/teloxide.git //! cd teloxide/examples/guess_a_number_bot -//! TELOXIDE_TOKEN=MyAwesomeToken cargo run +//! TELOXIDE_TOKEN= cargo run //! ``` //! //!