aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java
diff options
context:
space:
mode:
authorGravatar Cal Peyser <cpeyser@google.com>2016-03-15 03:18:10 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2016-03-15 12:00:30 +0000
commit5f38d9e6c4dc7cc53d7ac21d1224d48882ee4953 (patch)
tree89fcb03aa818155cb9bd4ff7d79aba47008ed296 /src/main/java
parentce83f39c1930c22bde6c6eecfdbafe1953a9bb1c (diff)
fix typo: "is produce" -> "is produced"
-- MOS_MIGRATED_REVID=117202268
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/packages/Attribute.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/packages/Attribute.java b/src/main/java/com/google/devtools/build/lib/packages/Attribute.java
index 54ad8b073d..9cd156a1c1 100644
--- a/src/main/java/com/google/devtools/build/lib/packages/Attribute.java
+++ b/src/main/java/com/google/devtools/build/lib/packages/Attribute.java
@@ -699,7 +699,7 @@ public final class Attribute implements Comparable<Attribute> {
/**
* Sets a list of sets of mandatory Skylark providers. Every configured target occurring in
* this label type attribute has to provide all the providers from one of those sets,
- * otherwise an error is produces during the analysis phase.
+ * otherwise an error is produced during the analysis phase.
*/
public Builder<TYPE> mandatoryProvidersList(Iterable<? extends Iterable<String>> providersList){
Preconditions.checkState((type == BuildType.LABEL) || (type == BuildType.LABEL_LIST),