From faee3e8bddf0bc38e1a3b717405eccd2f99d8b0c Mon Sep 17 00:00:00 2001 From: Kevin <56823591+6d7a@users.noreply.github.com> Date: Tue, 20 Dec 2022 16:03:40 +0100 Subject: [PATCH] fix(welcome): broken links (#303) * docs(welcome): provide full url to prevent 404 `welcome` could be accessed through ./docs and ./docs/welcome. When trying to navigate from ./docs, `getting-started` lead to ./getting-started instead of ./docs/getting-started * docs(welcome): fix link name mismatch --- docs/welcome.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/welcome.md b/docs/welcome.md index dc18659..6107c67 100644 --- a/docs/welcome.md +++ b/docs/welcome.md @@ -10,7 +10,7 @@ Actix Web lets you quickly and confidently develop web services in Rust and this The documentation on this website focusses primarily on the Actix Web framework. For information about the actor framework called Actix, check out the [Actix chapter][actix-chapter] (or the lower level [actix API docs][actix-docs]). Otherwise, head on to the [getting started guide][getting-started]. If you already know your way around and you need specific information you might want to read the [actix-web API docs][actix-web-docs]. -[getting-started]: ./getting-started +[getting-started]: https://actix.rs/docs/getting-started [actix-web-docs]: https://docs.rs/actix-web [actix-docs]: https://docs.rs/actix -[actix-book]: ./actix +[actix-chapter]: https://actix.rs/docs/actix