aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/skylark/bzl-style.md
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2018-03-01 09:37:41 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-03-01 09:39:56 -0800
commit033081b710123851d61ffda1e25fcf3da5ce2959 (patch)
tree21189190168db556b44b8af81e1f53e9ebfcce43 /site/docs/skylark/bzl-style.md
parent0e4c990fe7e71ef31e2271728809370ddaf7779f (diff)
Fixes nit by removing accidently-repeated words.
RELNOTES: None. PiperOrigin-RevId: 187489449
Diffstat (limited to 'site/docs/skylark/bzl-style.md')
-rw-r--r--site/docs/skylark/bzl-style.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/site/docs/skylark/bzl-style.md b/site/docs/skylark/bzl-style.md
index bf8a3724e7..552d02280b 100644
--- a/site/docs/skylark/bzl-style.md
+++ b/site/docs/skylark/bzl-style.md
@@ -26,10 +26,10 @@ dependency from that Java binary. Each time you add a layer of abstraction, you
make it harder for a user to do these tasks.
BUILD files are also analyzed and updated by many different tools.
-Tools may not be able to edit your be able to edit your BUILD file if it uses
-abstractions. Keeping your BUILD files simple will allow you to get better
-tooling. As a code base grows, it becomes more and more frequent to do changes
-across many BUILD files in order to update a library or do a cleanup.
+Tools may not be able to edit your BUILD file if it uses abstractions. Keeping
+your BUILD files simple will allow you to get better tooling. As a code base
+grows, it becomes more and more frequent to do changes across many BUILD files
+in order to update a library or do a cleanup.
Do not create a macro just to avoid some amount of repetition in BUILD files.
The [DRY](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself) principle