aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar gregce <gregce@google.com>2018-06-27 16:02:05 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-06-27 16:03:14 -0700
commitef5873bd5211f748189a2614b0aea1792e86c0a1 (patch)
tree7b2f9dfe1c1c66654361044aca61ed37b480169f /site
parentd790ce4027a4361e2ea821f56d236d4fe0e732c3 (diff)
Remove outdated cfg=data"
PiperOrigin-RevId: 202386041
Diffstat (limited to 'site')
-rw-r--r--site/docs/skylark/cookbook.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/skylark/cookbook.md b/site/docs/skylark/cookbook.md
index 2852f55499..d382db065b 100644
--- a/site/docs/skylark/cookbook.md
+++ b/site/docs/skylark/cookbook.md
@@ -532,7 +532,7 @@ execute = rule(
executable=True,
attrs={
"command": attr.string(),
- "data": attr.label_list(cfg="data", allow_files=True),
+ "data": attr.label_list(allow_files=True),
},
)
```