Skip to content

Commit 58273ce

Browse files
committed
fix javadoc symbol encoding
1 parent 8d47d56 commit 58273ce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5544,7 +5544,7 @@ static <T, C extends Collection<T>> C findMany(C collector, Iterator<? extends T
55445544
*
55455545
* <pre class="groovyTestCase">
55465546
* def letters = Iterators.iterate('A', String::next).take(26).plus(Iterators.iterate('a', String::next).take(26))
5547-
* assert letters.findingAll{ it.toUpperCase() < 'D' }.toList() == ['A', 'B', 'C', 'a', 'b', 'c']
5547+
* assert letters.findingAll{ it.toUpperCase() &lt; 'D' }.toList() == ['A', 'B', 'C', 'a', 'b', 'c']
55485548
* </pre>
55495549
*
55505550
* @param self a source Iterator

0 commit comments

Comments
 (0)