From 881f51fef1084d9d4c6813a22b304b16db65a55b Mon Sep 17 00:00:00 2001 From: Darius Wiles Date: Mon, 8 Mar 2021 07:06:44 -0800 Subject: [PATCH] Fix format by moving advantage to new bullet (#245) --- patterns/structural/small-crates.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/patterns/structural/small-crates.md b/patterns/structural/small-crates.md index d777ffd..01060e3 100644 --- a/patterns/structural/small-crates.md +++ b/patterns/structural/small-crates.md @@ -14,7 +14,8 @@ We should take advantage of this tooling, and use smaller, more fine-grained dep * Small crates are easier to understand, and encourage more modular code. * Crates allow for re-using code between projects. For example, the `url` crate was developed as part of the Servo browser engine, - but has since found wide use outside the project. * Since the compilation unit + but has since found wide use outside the project. +* Since the compilation unit of Rust is the crate, splitting a project into multiple crates can allow more of the code to be built in parallel.