Skip to content

Commit 58273ce

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
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)