docs: improve ambiguous sentence. Fixes #3503.
RELNOTES: None
PiperOrigin-RevId: 179815290
diff --git a/site/docs/best-practices.md b/site/docs/best-practices.md
index 531c7a8..04a9ee7 100644
--- a/site/docs/best-practices.md
+++ b/site/docs/best-practices.md
@@ -71,9 +71,9 @@
depending on a library `some-library.so`, you'd create a BUILD file and build `some-library.so`
from its sources, then depend on that target.
-Building from source prevents a build from using a library that was built with incompatible flags
-or a different architecture. There are also some features like coverage, static analysis, or
-dynamic analysis that will only work on the source.
+Always building from source ensures that a build is not using a library that was built with
+incompatible flags or a different architecture. There are also some features like coverage,
+static analysis, or dynamic analysis that will only work on the source.
## Versioning