Skip to content

Commit

Permalink
fix minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
zhfeng committed Jul 18, 2020
1 parent 6f4034a commit 74967d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/src/main/asciidoc/mybatis.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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[]

Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/mybatis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
</activation>
<properties>
<quarkus.native.additional-build-args>--report-unsupported-elements-at-runtime</quarkus.native.additional-build-args>
</properties>
</properties>
<build>
<plugins>
<plugin>
Expand Down

0 comments on commit 74967d6

Please sign in to comment.