You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2021/08/13 07:26:58 UTC

[wicket] branch WICKET-6913-replace-cglib-with-bytebuddy-wicket-10.x updated: WICKET-6913 Fix typos in javadoc

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch WICKET-6913-replace-cglib-with-bytebuddy-wicket-10.x
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/WICKET-6913-replace-cglib-with-bytebuddy-wicket-10.x by this push:
     new 48a12e7  WICKET-6913 Fix typos in javadoc
48a12e7 is described below

commit 48a12e7251d644e092e509d1a10e573053711282
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Fri Aug 13 10:25:59 2021 +0300

    WICKET-6913 Fix typos in javadoc
---
 .../src/main/java/org/apache/wicket/proxy/LazyInitProxyFactory.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/wicket-ioc/src/main/java/org/apache/wicket/proxy/LazyInitProxyFactory.java b/wicket-ioc/src/main/java/org/apache/wicket/proxy/LazyInitProxyFactory.java
index 289df36..3e33b74 100644
--- a/wicket-ioc/src/main/java/org/apache/wicket/proxy/LazyInitProxyFactory.java
+++ b/wicket-ioc/src/main/java/org/apache/wicket/proxy/LazyInitProxyFactory.java
@@ -312,9 +312,9 @@ public class LazyInitProxyFactory
 	 * We need to set the interceptor as a field in the proxy class so that
 	 * we could use different interceptors for proxied classes with generics.
 	 * For example: a {@link org.apache.wicket.Component} may need to inject
-	 * two beans with the same raw type but difference generic type(s) (<em>
+	 * two beans with the same raw type but different generic type(s) (<em>
 	 * ArrayList&lt;String&gt;</em> and <em>ArrayList&lt;Integer&gt;</em>).
-	 * Since the generic types are erased at runtime and we use caching for the
+	 * Since the generic types are erased at runtime, and we use caching for the
 	 * dynamic proxy classes we need to be able to set different interceptors
 	 * after instantiating the proxy class.
 	 */