Skip to content

Commit 6b26dc0

Browse files
authored
Update 04_panache.adoc
1 parent 8dfe2a9 commit 6b26dc0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

documentation/modules/ROOT/pages/04_panache.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[#quarkusp-demo-overview]
66
== Demo Overview
77

8-
You'll learn how easy and productive is Quarkus with Hibernate with Panache. For this, we'll develop a simple CRUD REST API that handles information about fruits.
8+
You'll learn how easy and productive Quarkus is with Hibernate with Panache. For this, we'll develop a simple CRUD REST API that handles information about fruits.
99

1010
We'll use http://www.h2database.com[H2,window="_blank"] as our backing database in this section, but it's very easy to use other database engines with Quarkus as you will see in the Dev Services chapter. As an exercise for later, we suggest to try your favorite database engine with the documentation found https://quarkus.io/guides/datasource[here,window="_blank"].
1111
@@ -57,7 +57,7 @@ quarkus extension add rest-jsonb jdbc-h2 hibernate-orm-panache smallrye-openapi
5757
[INFO] ------------------------------------------------------------------------
5858
----
5959
60-
You'll notice that by running this command the Quarkus maven plugin added some dependencies to your `pom.xml` file. And best of all: Quarkus will autodetect and apply the changes, and you don't even need to restart Quarkus!
60+
You'll notice that by running this command the Quarkus Maven plugin added some dependencies to your `pom.xml` file. And best of all: Quarkus will autodetect and apply the changes, and you don't even need to restart Quarkus!
6161
6262
== Adding database properties to your configuration
6363
@@ -75,7 +75,7 @@ quarkus.datasource.db-kind=h2
7575
quarkus.hibernate-orm.database.generation=drop-and-create
7676
----
7777
78-
NOTE: With <<Dev Services>> enabled, no JDBC URL needs to be provided in Dev Mode. In this case, we input the URL to ensure consistency across all application run modes.
78+
NOTE: With <<Dev Services>> enabled, no JDBC URL needs to be provided in dev mode. In this case, we input the URL to ensure consistency across all application run modes.
7979
8080
== Create Fruit Entity
8181
@@ -139,7 +139,7 @@ public class FruitResource {
139139
}
140140
----
141141

142-
Now we should everything in place to query our *GET* REST endpoint:
142+
Now we should have everything in place to query our *GET* REST endpoint:
143143

144144
[.console-input]
145145
[source,bash]

0 commit comments

Comments
 (0)