about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2025-01-02 10:16:13 +0200
committerJakub Beránek <berykubik@gmail.com>2025-01-05 17:51:45 +0100
commita5207d30d344cfd89e15f581f2ce07e149d56c33 (patch)
tree43578d15feae4c7876c92b6a6b7483d70f4fa768 /src/doc/rustc-dev-guide
parent2e6c7b4cc1fae8ae3cf37062f7cb6566ff2920a0 (diff)
downloadrust-a5207d30d344cfd89e15f581f2ce07e149d56c33.tar.gz
rust-a5207d30d344cfd89e15f581f2ce07e149d56c33.zip
make paragraph more readable
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/external-repos.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/external-repos.md b/src/doc/rustc-dev-guide/src/external-repos.md
index 819ea2bb65e..a7ab3d773ac 100644
--- a/src/doc/rustc-dev-guide/src/external-repos.md
+++ b/src/doc/rustc-dev-guide/src/external-repos.md
@@ -6,9 +6,11 @@ There are three main ways we use dependencies:
 2. As a git (e.g. `clippy`) or a [josh] (e.g. `miri`) subtree
 3. As a git submodule (e.g. `cargo`)
 
-As a general rule, use crates.io for libraries that could be useful for others in the ecosystem; use
-subtrees for tools that depend on compiler internals and need to be updated if there are breaking
-changes; and use submodules for tools that are independent of the compiler.
+As a general rule:
+- Use crates.io for libraries that could be useful for others in the ecosystem
+- Use subtrees for tools that depend on compiler internals and need to be updated if there are breaking
+changes
+- Use submodules for tools that are independent of the compiler
 
 ## External Dependencies (subtrees)