aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorGravatar Laszlo Csomor <laszlocsomor@google.com>2015-03-31 08:43:03 +0000
committerGravatar Laurent Le Brun <laurentlb@google.com>2015-03-31 14:02:19 +0000
commit8acde8d7c91a1a93f9958b065aeea38f83c11ea4 (patch)
tree2e21ded1d8821e636e4b4c9c158bfa034970fc07 /docs
parent8232d9ba85b26cb4d10588a39d7a7adafeb5c4af (diff)
Bazel: Patch in changes of pull request #80.
https://github.com/google/bazel/pull/80 -- MOS_MIGRATED_REVID=89945673
Diffstat (limited to 'docs')
-rw-r--r--docs/skylark/rules.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/skylark/rules.md b/docs/skylark/rules.md
index c353eac5eb..2c6301cb2b 100644
--- a/docs/skylark/rules.md
+++ b/docs/skylark/rules.md
@@ -20,7 +20,7 @@ the attributes and their type when you define a rule.
```python
sum = rule(
implementation=impl,
- attr = {
+ attrs = {
"number": attr.int(default = 1),
"deps": attr.label_list(),
},