From da2ce2b116e1ca465ceda0fef127a4ad9697db59 Mon Sep 17 00:00:00 2001 From: LasterAlex Date: Fri, 16 Aug 2024 14:21:39 +0300 Subject: [PATCH] Fmt fix --- crates/teloxide/examples/deep_linking.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/teloxide/examples/deep_linking.rs b/crates/teloxide/examples/deep_linking.rs index 22a8a035..7bae00e7 100644 --- a/crates/teloxide/examples/deep_linking.rs +++ b/crates/teloxide/examples/deep_linking.rs @@ -3,8 +3,8 @@ //! //! Deep linking (links like https://t.me/some_bot?start=123456789) //! is handled by telegram in the same way as just sending /start {argument}. -//! So, in the StartCommand enum we need to write Start(String) to get the argument, -//! just as in command.rs example. +//! So, in the StartCommand enum we need to write Start(String) +//! to get the argument, just like in command.rs example. //! //! Also, deep linking is only supported with /start command! //! "https://t.me/some_bot?argument=123456789" will not work