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/06/07 14:14:48 UTC

[wicket] 01/03: Fix a typo in javadoc

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

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git

commit 9da806176019305a06e3fdcf8de15f3d59879795
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Mon Jun 7 17:10:48 2021 +0300

    Fix a typo in javadoc
---
 .../main/java/org/apache/wicket/bean/validation/IPropertyResolver.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wicket-bean-validation/src/main/java/org/apache/wicket/bean/validation/IPropertyResolver.java b/wicket-bean-validation/src/main/java/org/apache/wicket/bean/validation/IPropertyResolver.java
index dabe39f..bcfd7ef 100644
--- a/wicket-bean-validation/src/main/java/org/apache/wicket/bean/validation/IPropertyResolver.java
+++ b/wicket-bean-validation/src/main/java/org/apache/wicket/bean/validation/IPropertyResolver.java
@@ -4,7 +4,7 @@ import org.apache.wicket.markup.html.form.FormComponent;
 import org.apache.wicket.model.IPropertyReflectionAwareModel;
 
 /**
- * Resolves the property to be validated for the given form component. Implementations, incuding the
+ * Resolves the property to be validated for the given form component. Implementations, including the
  * default one, usually check the form component's model for some subclass that can provide the
  * necessary meta information to resolve the property.
  *