summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2014-09-15 20:37:52 -0400
committerTavian Barnes <tavianator@tavianator.com>2014-09-15 20:37:52 -0400
commit7af926e2d02823c94a65310756f0ca7595908521 (patch)
treea7e04334bf214f25c8af8afe463794504f7e95d4
parent4ed87db182d3f692c561a5681369616d6acce6b1 (diff)
parent0c0bddebfc7fb444f9f6feeba5017bc0a1bbc864 (diff)
downloadsangria-7af926e2d02823c94a65310756f0ca7595908521.tar.xz
Merge branch 'fix-javadocs'
-rw-r--r--sangria-listbinder/src/main/java/com/tavianator/sangria/listbinder/ListBinder.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/sangria-listbinder/src/main/java/com/tavianator/sangria/listbinder/ListBinder.java b/sangria-listbinder/src/main/java/com/tavianator/sangria/listbinder/ListBinder.java
index d813b7a..003e25e 100644
--- a/sangria-listbinder/src/main/java/com/tavianator/sangria/listbinder/ListBinder.java
+++ b/sangria-listbinder/src/main/java/com/tavianator/sangria/listbinder/ListBinder.java
@@ -60,9 +60,9 @@ import com.tavianator.sangria.core.UniqueAnnotations;
* </pre>
*
* <p>
- * This will create a binding for a {@code List&lt;String&gt;}, which contains {@code "a"} followed by {@code "b"}. It
- * also creates a binding for {@code List&lt;Provider&lt;String&gt;&gt;} &mdash; this may be useful in more advanced
- * cases to allow list elements to be lazily loaded.
+ * This will create a binding for a {@code List<String>}, which contains {@code "a"} followed by {@code "b"}. It also
+ * creates a binding for {@code List<Provider<String>>} &mdash; this may be useful in more advanced cases to allow list
+ * elements to be lazily loaded.
* </p>
*
* <p>To add an annotation to the list binding, simply write this:</p>
@@ -74,7 +74,7 @@ import com.tavianator.sangria.core.UniqueAnnotations;
* </pre>
*
* <p>
- * and the created binding will be {@code @Named("name") List&lt;String&gt;} instead.
+ * and the created binding will be {@code @Named("name") List<String>} instead.
* </p>
*
* <p>