diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-09-15 20:37:52 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-09-15 20:37:52 -0400 |
commit | 7af926e2d02823c94a65310756f0ca7595908521 (patch) | |
tree | a7e04334bf214f25c8af8afe463794504f7e95d4 /sangria-listbinder | |
parent | 4ed87db182d3f692c561a5681369616d6acce6b1 (diff) | |
parent | 0c0bddebfc7fb444f9f6feeba5017bc0a1bbc864 (diff) | |
download | sangria-7af926e2d02823c94a65310756f0ca7595908521.tar.xz |
Merge branch 'fix-javadocs'
Diffstat (limited to 'sangria-listbinder')
-rw-r--r-- | sangria-listbinder/src/main/java/com/tavianator/sangria/listbinder/ListBinder.java | 8 |
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<String>}, which contains {@code "a"} followed by {@code "b"}. It - * also creates a binding for {@code List<Provider<String>>} — 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>>} — 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<String>} instead. + * and the created binding will be {@code @Named("name") List<String>} instead. * </p> * * <p> |