From fc141b8dfc8326c35ad51f77aad4aef41cd62ee9 Mon Sep 17 00:00:00 2001 From: mo8it Date: Fri, 9 Aug 2024 01:16:45 +0200 Subject: [PATCH] Put Cargo.toml in `` --- src/init.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.rs b/src/init.rs index 5e876d62..26fe09c5 100644 --- a/src/init.rs +++ b/src/init.rs @@ -75,7 +75,7 @@ pub fn init() -> Result<()> { bail!("Failed to initialize a new Cargo workspace member.\nPlease initialize Rustlings in a different directory"); } - stdout.write_all(b"The directory `rustlings` has been added to `workspace.members` in the Cargo.toml file of this Cargo workspace.\n")?; + stdout.write_all(b"The directory `rustlings` has been added to `workspace.members` in the `Cargo.toml` file of this Cargo workspace.\n")?; fs::remove_dir_all("rustlings") .context("Failed to remove the temporary directory `rustlings/`")?; init_git = false;