Skip to content

Commit d6f7399

Browse files
committed
Fix malformed HTML in CGLIB javadoc
See gh-28955
1 parent 7fa5b8d commit d6f7399

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-core/src/main/java/org/springframework/cglib/core/GeneratorStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
package org.springframework.cglib.core;
1717

1818
/**
19-
* The <code>GeneratorStrategy</code. is responsible for taking a
19+
* The <code>GeneratorStrategy</code> is responsible for taking a
2020
* {@link ClassGenerator} and producing a byte array containing the
2121
* data for the generated <code>Class</code>. By providing your
2222
* own strategy you may examine or modify the generated class before

spring-core/src/main/java/org/springframework/cglib/reflect/MethodDelegate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
* }
6666
*
6767
* public int alternateMain( String[] args ) {
68-
* for (int i = 0; i < args.length; i++) {
68+
* for (int i = 0; i &lt; args.length; i++) {
6969
* System.out.println( args[i] );
7070
* }
7171
* return args.length;

0 commit comments

Comments
 (0)