aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skylarkinterface
diff options
context:
space:
mode:
authorGravatar Pedro Liberal Fernandez <plf@google.com>2016-08-29 11:01:38 +0000
committerGravatar Klaus Aehlig <aehlig@google.com>2016-08-29 13:00:09 +0000
commit080dfc1ecb6fa3f7dd0f4e96e96b45a548724e4b (patch)
treeaafdec8ff6230148272479cb329fa959e514c312 /src/main/java/com/google/devtools/build/lib/skylarkinterface
parent211a95ce0e6f3a045d26d7e483d1e5b074ca2bdb (diff)
Replace js provider methods with named parameters.
-- MOS_MIGRATED_REVID=131576962
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skylarkinterface')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skylarkinterface/Param.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skylarkinterface/Param.java b/src/main/java/com/google/devtools/build/lib/skylarkinterface/Param.java
index 0c1c0540e1..9c5217369e 100644
--- a/src/main/java/com/google/devtools/build/lib/skylarkinterface/Param.java
+++ b/src/main/java/com/google/devtools/build/lib/skylarkinterface/Param.java
@@ -81,12 +81,12 @@ public @interface Param {
boolean named() default false;
/**
- * If true, the parameter may be specified as a positional parameter. For example for an integer
+ * If true, the parameter may be specified as a positional parameter. For example for an integer
* positional parameter {@code foo} of a method {@code bar}, then the method call will look like
* {@code foo(1)}. If {@link #named()} is {@code false}, then this will be the only way to call
* {@code foo}.
*
- * <p>Positional arguments should comes first.
+ * <p>Positional arguments should come first.
*/
boolean positional() default true;