You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jg...@apache.org on 2019/05/14 13:32:38 UTC

[tomee] branch master updated: Fix typo

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e7644ad  Fix typo
     new 477daee  Merge pull request #466 from doychin/fix-typo-in-jwt-bval-example
e7644ad is described below

commit e7644adb58a6ecd9c935850380e34c822f0ff05e
Author: Doychin Bondzhev <do...@dsoft-bg.com>
AuthorDate: Tue May 14 13:02:08 2019 +0300

    Fix typo
    
    Signed-off-by: Doychin Bondzhev <do...@dsoft-bg.com>
---
 examples/mp-jwt-bean-validation/README.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/mp-jwt-bean-validation/README.adoc b/examples/mp-jwt-bean-validation/README.adoc
index 2a7411f..86fdadf 100644
--- a/examples/mp-jwt-bean-validation/README.adoc
+++ b/examples/mp-jwt-bean-validation/README.adoc
@@ -4,7 +4,7 @@
 
 = MicroProfile JWT with Bean Validation
 
-TomEE has a fun feature that allows the use of Bean Validation as an alternative or compliment to the `@RolesAllowed` annotation.  The motivation of the feature is that `JsonWebToken` is effectively a bean and a security check is ultimately an act of producing a boolean result using some minimal input.  It a is perfect problem for Bean Validation.
+TomEE has a fun feature that allows the use of Bean Validation as an alternative or compliment to the `@RolesAllowed` annotation.  The motivation of the feature is that `JsonWebToken` is effectively a bean and a security check is ultimately an act of producing a boolean result using some minimal input.  It is a perfect problem for Bean Validation.
 
 The feature ultimately allows you to implement a method like this: