aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar vladmos <vladmos@google.com>2017-04-26 16:26:10 +0200
committerGravatar Vladimir Moskva <vladmos@google.com>2017-04-26 18:04:58 +0200
commiteecb3b7538733504b5656a6a46c4a016d469b181 (patch)
treee995c4761049f33fce877351df8907a85d628174 /site
parentf596af634049aadcb9bcddac47920888b951a7aa (diff)
Fix the aspects documentation
Fixes #2873 PiperOrigin-RevId: 154294358
Diffstat (limited to 'site')
-rw-r--r--site/versions/master/docs/skylark/aspects.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/versions/master/docs/skylark/aspects.md b/site/versions/master/docs/skylark/aspects.md
index 4d575e9c4e..5dcaf1bedf 100644
--- a/site/versions/master/docs/skylark/aspects.md
+++ b/site/versions/master/docs/skylark/aspects.md
@@ -104,8 +104,8 @@ Aspect implementation functions are similiar to the rule implementation
functions. They return [providers](rules.md#providers), can generate
[actions](rules.md#actions) and take two arguments:
-* `target`: the target the aspect is being applied to.
-* [`ctx`](lib/ctx.html): `ctx` object that can be used to access attributes and
+* `target`: the [target](lib/Target.html) the aspect is being applied to.
+* `ctx`: [`ctx`](lib/ctx.html) object that can be used to access attributes and
generate outputs and actions.
Example: