Fix malformed HTML in CGLIB javadoc

See gh-28955
This commit is contained in:
Juergen Hoeller
2022-08-12 12:14:18 +02:00
parent 7fa5b8dcb5
commit d6f73994c2
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@
package org.springframework.cglib.core;
/**
* The <code>GeneratorStrategy</code. is responsible for taking a
* The <code>GeneratorStrategy</code> is responsible for taking a
* {@link ClassGenerator} and producing a byte array containing the
* data for the generated <code>Class</code>. By providing your
* own strategy you may examine or modify the generated class before

View File

@@ -65,7 +65,7 @@ import org.springframework.asm.Type;
* }
*
* public int alternateMain( String[] args ) {
* for (int i = 0; i < args.length; i++) {
* for (int i = 0; i &lt; args.length; i++) {
* System.out.println( args[i] );
* }
* return args.length;