aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar Dmitry Lomov <dslomov@google.com>2016-06-01 14:50:56 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2016-06-01 18:18:12 +0000
commit77903754ad27cfaf660e4dfebc2e23ed4d640e98 (patch)
tree525eff63c505a98dfed680662035130651de943e /site
parente45ed60f2eb5db19050b6d220acd9fcffaefd3ee (diff)
Even more formatting.
-- MOS_MIGRATED_REVID=123751907
Diffstat (limited to 'site')
-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.