diff --git a/java/src/com/google/template/soy/data/SoyValueConverter.java b/java/src/com/google/template/soy/data/SoyValueConverter.java index 80a33f5b4..61e2e97da 100644 --- a/java/src/com/google/template/soy/data/SoyValueConverter.java +++ b/java/src/com/google/template/soy/data/SoyValueConverter.java @@ -191,12 +191,10 @@ public SoyEasyList newEasyListFromList(SoyList list) { } /** - * Creates a SoyList from a Java Iterable. + * Creates a SoyList, SoySet, or SoyIterable from a Java Iterable, based on the actual type of + * `items`. * *

Values are converted into Soy types lazily and only once. - * - * @param items The collection of Java values - * @return A new SoyList initialized from the given Java Collection. */ private SoyIterable newIterableFromIterable(Iterable items) { return IterableImpl.forJavaIterable(items, this::convert);