aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/actions
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/actions')
-rw-r--r--src/main/java/com/google/devtools/build/lib/actions/AbstractAction.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/actions/AbstractAction.java b/src/main/java/com/google/devtools/build/lib/actions/AbstractAction.java
index 39f435cdb6..4474a76cd3 100644
--- a/src/main/java/com/google/devtools/build/lib/actions/AbstractAction.java
+++ b/src/main/java/com/google/devtools/build/lib/actions/AbstractAction.java
@@ -566,10 +566,11 @@ public abstract class AbstractAction implements Action, SkylarkValue {
@SkylarkCallable(
name = "argv",
- doc = "For actions created by <a href=\"ctx.html#action\">ctx.action()</a>, an immutable "
- + "list of the arguments for the command line to be executed. Note that when using the "
- + "shell (i.e., when <a href=\"ctx.html#action.executable\">executable</a> is not set), "
- + "the first two arguments will be the shell path and <code>\"-c\"</code>.",
+ doc = "For actions created by <a href=\"actions.html#run\">ctx.actions.run()</a> "
+ + "or <a href=\"actions.html#run_shell\">ctx.actions.run_shell()</a> an immutable "
+ + "list of the arguments for the command line to be executed. Note that "
+ + "for shell actions the first two arguments will be the shell path "
+ + "and <code>\"-c\"</code>.",
structField = true,
allowReturnNones = true)
public SkylarkList<String> getSkylarkArgv() {