aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/skylark
diff options
context:
space:
mode:
Diffstat (limited to 'site/docs/skylark')
-rw-r--r--site/docs/skylark/aspects.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/docs/skylark/aspects.md b/site/docs/skylark/aspects.md
index b19e67fc67..eec3af1a3f 100644
--- a/site/docs/skylark/aspects.md
+++ b/site/docs/skylark/aspects.md
@@ -141,10 +141,10 @@ returns a struct of providers that are accessible to its dependencies.
the implementation of aspect A. It is an error if a target and an aspect that
is applied to it each provide a provider with the same name.
* For the aspect implementation, the values of attributes along which
- the aspect is propagated (from the 'attr\_aspect' list) are replaced with
+ the aspect is propagated (from the `attr_aspect` list) are replaced with
the results of an application of the aspect to them. For example, if target
X has Y and Z in its deps, `ctx.rule.attr.deps` for A(X) will be [A(Y), A(Z)].
- In the `\_metal\_proto\_aspect\_impl` function above, ctx.rule.attr.deps will be
+ In the `_metal_proto_aspect_impl` function above, ctx.rule.attr.deps will be
Target objects that are the results of applying the aspect to the 'deps'
of the original target to which the aspect has been applied.
That allows the aspect to examine `metal_proto` provider on them.