diff --git a/docs/src/main/asciidoc/mybatis.adoc b/docs/src/main/asciidoc/mybatis.adoc
index 0595ba213f60c..2f945bfb3bf7f 100644
--- a/docs/src/main/asciidoc/mybatis.adoc
+++ b/docs/src/main/asciidoc/mybatis.adoc
@@ -7,7 +7,7 @@ https://github.com/quarkusio/quarkus/tree/master/docs/src/main/asciidoc
include::./attributes.adoc[]
:extension-status: preview
-This guide demonstrates how your Quarkus application can use the link:https://mybatis.org/mybatis-3/[MyBatis] to support the custom SQL, stored procedures and advanced mappings.
+This guide demonstrates how your Quarkus application can use link:https://mybatis.org/mybatis-3/[MyBatis] to support custom SQL, stored procedures and advanced mappings.
include::./status-include.adoc[]
@@ -40,7 +40,7 @@ First, we need a new project. Create a new project with the following command:
mvn io.quarkus:quarkus-maven-plugin:{quarkus-version}:create \
-DprojectGroupId=org.acme \
-DprojectArtifactId=mybatis-quickstart \
- -Dextensions="mybatis,resteay-jackson,jdbc-mysql"
+ -Dextensions="mybatis,restesay-jackson,jdbc-mysql"
cd mybatis-quickstart
----
This command generates a Maven project, with its pom.xml importing the quarkus-mybatis extension.
@@ -125,7 +125,7 @@ public interface UserMapper {
2. Insert a user into the database. We should use the `@Param` to bind the parameters.
3. Delete a user from the databse.
-== Createing the MyBatisResource to handle the requests
+== Creating the MyBatisResource to handle the requests
We are going to create a `MyBatisResource` class which will handle all the requests to create, query or remove the data
from the database.
diff --git a/integration-tests/mybatis/pom.xml b/integration-tests/mybatis/pom.xml
index de9b9ab816384..263958e91ee38 100644
--- a/integration-tests/mybatis/pom.xml
+++ b/integration-tests/mybatis/pom.xml
@@ -76,7 +76,7 @@
--report-unsupported-elements-at-runtime
-
+