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 2016/03/04 09:36:38 UTC

wicket git commit: Fix typo in userdoc

Repository: wicket
Updated Branches:
  refs/heads/wicket-7.x 75a41e931 -> f96bdfca3


Fix typo in userdoc

Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/f96bdfca
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/f96bdfca
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/f96bdfca

Branch: refs/heads/wicket-7.x
Commit: f96bdfca3e1f1b87320bc621ce13295f031de078
Parents: 75a41e9
Author: Peter Lamby <pe...@web.de>
Authored: Fri Mar 4 09:32:27 2016 +0100
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Fri Mar 4 09:36:24 2016 +0100

----------------------------------------------------------------------
 wicket-user-guide/src/docs/guide/forms2/forms2_4.gdoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/f96bdfca/wicket-user-guide/src/docs/guide/forms2/forms2_4.gdoc
----------------------------------------------------------------------
diff --git a/wicket-user-guide/src/docs/guide/forms2/forms2_4.gdoc b/wicket-user-guide/src/docs/guide/forms2/forms2_4.gdoc
index 635d0eb..98f2690 100644
--- a/wicket-user-guide/src/docs/guide/forms2/forms2_4.gdoc
+++ b/wicket-user-guide/src/docs/guide/forms2/forms2_4.gdoc
@@ -1,4 +1,4 @@
-Standard JSR 303 defines a set of annotations and APIs to validate our domain objects at field-level. Wicket has introduced an experimental support for this standard since version 6.4.0 and with version 6.14.0 it has became an official Wicket model (named @wicket-bean-validation@).
+Standard JSR 303 defines a set of annotations and APIs to validate our domain objects at field-level. Wicket has introduced an experimental support for this standard since version 6.4.0 and with version 6.14.0 it has became an official Wicket module (named @wicket-bean-validation@).
 In this paragraph we will see the basic steps needed to use JSR 303 validation in our Wicket application. Code snippets are from example project @JSR303validation@.
 
 In the example application we have a form to insert the data for a new @Person@ bean and its relative @Address@. The code for class @Person@ is the following