From 3adef4f57635bb36dd7f23a000fc4c72cdb257ae Mon Sep 17 00:00:00 2001 From: Sokhibjon Orzikulov Date: Wed, 22 Nov 2023 15:01:34 +0500 Subject: [PATCH] ft: cargo fmt --- src/functions/roadmap.rs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/functions/roadmap.rs b/src/functions/roadmap.rs index d917bff..af4e01d 100644 --- a/src/functions/roadmap.rs +++ b/src/functions/roadmap.rs @@ -9,10 +9,16 @@ use teloxide::{ static ROADMAP: &str = include_str!("../../data/roadmap.md"); static LINKS: &[(&str, &str)] = &[ - ("Offitsial Dokumentatsiya", "https://doc.rust-lang.org/book/"), + ( + "Offitsial Dokumentatsiya", + "https://doc.rust-lang.org/book/", + ), ("O'zbek tilidagi varianti", "https://book.rust-lang.uz"), - ("Rust by Example", "https://doc.rust-lang.org/rust-by-example/"), - ("Rustling", "https://github.com/rust-lang/rustlings") + ( + "Rust by Example", + "https://doc.rust-lang.org/rust-by-example/", + ), + ("Rustling", "https://github.com/rust-lang/rustlings"), ]; pub async fn command(bot: &Bot, msg: &Message) -> ResponseResult<()> {