aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/best-practices.md
diff options
context:
space:
mode:
authorGravatar buchgr <buchgr@google.com>2017-12-21 08:09:21 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2017-12-21 08:10:44 -0800
commit2384b98ac6e193bac30454f39e8949739e441982 (patch)
treeba89cc38e5b5e48e01e944b16806480e9b533c27 /site/docs/best-practices.md
parent169329ba0bcf7f2baa654a3d262193500f9a76b2 (diff)
docs: improve ambiguous sentence. Fixes #3503.
RELNOTES: None PiperOrigin-RevId: 179815290
Diffstat (limited to 'site/docs/best-practices.md')
-rw-r--r--site/docs/best-practices.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/docs/best-practices.md b/site/docs/best-practices.md
index 531c7a8cac..04a9ee776b 100644
--- a/site/docs/best-practices.md
+++ b/site/docs/best-practices.md
@@ -71,9 +71,9 @@ Everything should be built from source whenever possible. Generally this means t
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