diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-09-14 20:15:11 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-09-14 20:15:11 -0400 |
commit | 0c0bddebfc7fb444f9f6feeba5017bc0a1bbc864 (patch) | |
tree | a7e04334bf214f25c8af8afe463794504f7e95d4 /sangria-listbinder/src | |
parent | 4ed87db182d3f692c561a5681369616d6acce6b1 (diff) | |
download | sangria-0c0bddebfc7fb444f9f6feeba5017bc0a1bbc864.tar.xz |
listbinder: Fix angle brackets in javadoc.
Diffstat (limited to 'sangria-listbinder/src')
-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> |