aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules
diff options
context:
space:
mode:
authorGravatar Jon Brandvein <brandjon@google.com>2016-11-11 19:42:27 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2016-11-14 14:54:56 +0000
commitc812c02ddb761aeaa85c7b7d2a04248cef96da00 (patch)
tree3744dde0f8a5ae009166fdd633de17d4536b4b3d /src/main/java/com/google/devtools/build/lib/rules
parent63edbd3f52a94536099332dd75e48dff02555bb4 (diff)
Update ctx.expand_action() doc
-- MOS_MIGRATED_REVID=138900814
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/SkylarkRuleImplementationFunctions.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/SkylarkRuleImplementationFunctions.java b/src/main/java/com/google/devtools/build/lib/rules/SkylarkRuleImplementationFunctions.java
index 75c5093741..166a4b7ba4 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/SkylarkRuleImplementationFunctions.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/SkylarkRuleImplementationFunctions.java
@@ -460,10 +460,10 @@ public class SkylarkRuleImplementationFunctions {
@Param(name = "self", type = SkylarkRuleContext.class, doc = "this context"),
@Param(name = "template", type = Artifact.class,
named = true, positional = false,
- doc = "the template file"),
+ doc = "the template file, which is a UTF-8 encoded text file"),
@Param(name = "output", type = Artifact.class,
named = true, positional = false,
- doc = "the output file"),
+ doc = "the output file, which is a UTF-8 encoded text file"),
@Param(name = "substitutions", type = SkylarkDict.class,
named = true, positional = false,
doc = "substitutions to make when expanding the template"),