aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/versions/master/docs/skylark/cookbook.md
diff options
context:
space:
mode:
Diffstat (limited to 'site/versions/master/docs/skylark/cookbook.md')
-rw-r--r--site/versions/master/docs/skylark/cookbook.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/versions/master/docs/skylark/cookbook.md b/site/versions/master/docs/skylark/cookbook.md
index ce3aa62ce7..b011eee1ea 100644
--- a/site/versions/master/docs/skylark/cookbook.md
+++ b/site/versions/master/docs/skylark/cookbook.md
@@ -538,9 +538,9 @@ load("//pkg:execute.bzl", "execute")
execute(
name = "e",
- // The location will be expanded to "pkg/data.txt", and it will reference
- // the data.txt file in runfiles when this target is invoked as
- // "bazel run //pkg:e".
+ # The location will be expanded to "pkg/data.txt", and it will reference
+ # the data.txt file in runfiles when this target is invoked as
+ # "bazel run //pkg:e".
command = "cat $(location :data.txt)",
data = [':data.txt']
)