From 875a7da0b2b28e9b33726870f0abedcafe19d97d Mon Sep 17 00:00:00 2001 From: mrshmllow Date: Sat, 17 Sep 2022 21:56:17 +1000 Subject: [PATCH] Update docs url --- src/internal/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/config.rs b/src/internal/config.rs index fdcad00..e0d599e 100644 --- a/src/internal/config.rs +++ b/src/internal/config.rs @@ -65,7 +65,7 @@ impl Config { } else { let default_conf = Config::default(); let toml_string = toml::ser::to_string_pretty(&default_conf).unwrap(); - fs::write(config_path, format!("{}\n\n{}", "# See https://github.com/crystal-linux/docs/blob/main/Amethyst/config.mdx for more information on config keys", toml_string)).unwrap(); + fs::write(config_path, format!("{}\n\n{}", "# See https://getcryst.al/docs/amethyst/config for more information on config keys", toml_string)).unwrap(); default_conf } }