From b0e282951fcf2090f3fd5afb4d490aba6c099697 Mon Sep 17 00:00:00 2001 From: lbellomo Date: Mon, 24 Mar 2025 00:04:47 -0300 Subject: [PATCH] doc: fix broken links on mdbook Relative links works on github but are broken for the 'CONTRIBUTING.md' on the mdbook. This change the relative link to the full link that works on github and on the mdbook --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e51df8f61..0621cf2a2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -29,13 +29,13 @@ Finally, feel free to join our [Discord](https://discord.gg/wQVJbvJ)! uutils is a big project consisting of many parts. Here are the most important parts for getting started: -- [`src/uu`](./src/uu/): The code for all utilities -- [`src/uucore`](./src/uucore/): Crate containing all the shared code between +- [`src/uu`](https://github.com/uutils/coreutils/tree/main/src/uu/): The code for all utilities +- [`src/uucore`](https://github.com/uutils/coreutils/tree/main/src/uucore/): Crate containing all the shared code between the utilities. -- [`tests/by-util`](./tests/by-util/): The tests for all utilities. -- [`src/bin/coreutils.rs`](./src/bin/coreutils.rs): Code for the multicall +- [`tests/by-util`](https://github.com/uutils/coreutils/tree/main/tests/by-util/): The tests for all utilities. +- [`src/bin/coreutils.rs`](https://github.com/uutils/coreutils/tree/main/src/bin/coreutils.rs): Code for the multicall binary. -- [`docs`](./docs/src): the documentation for the website +- [`docs`](https://github.com/uutils/coreutils/tree/main/docs/src): the documentation for the website Each utility is defined as a separate crate. The structure of each of these crates is as follows: