From 2ecda6e560d8a252c1ce6c09ea0b52cab5af9400 Mon Sep 17 00:00:00 2001 From: brandjon Date: Mon, 18 Jan 2021 20:42:43 -0800 Subject: [PATCH] Fix typo PiperOrigin-RevId: 352486901 --- site/docs/skylark/rules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/docs/skylark/rules.md b/site/docs/skylark/rules.md index 24a75c9b89e433..b7821570175ba4 100644 --- a/site/docs/skylark/rules.md +++ b/site/docs/skylark/rules.md @@ -173,7 +173,7 @@ relationship between a rule and a tool (such as a compiler), since most of the time a user is not interested in specifying what tool the rule uses. Inside the rule's implementation function, this is treated the same as other dependencies. -If you want to provide an implcit dependency without allowing the user to +If you want to provide an implicit dependency without allowing the user to override that value, you can make the attribute *private* by giving it a name that begins with an underscore (`_`). Private attributes must have default values. It generally only makes sense to use private attributes for implicit