Skip to content

Commit 7c5d064

Browse files
authored
Fix typos (#136)
* fix typos * fix typo * fix typo
1 parent 982fe8d commit 7c5d064

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can access the HTML version of this tutorial here: https://redhat-developer-
88
99
== Why Quarkus?
1010
11-
Historically Java was able to handle the biggest enterprise problem(s) with its "Write once, run anywhere" (WORA) paradigm. With Cloud Native Applications grown to popularity, things like running applications as linux containers, serverless taking centere stage -- Java was pushed back by languages like golang, node.js as the forerunner to build Cloud Native Applications as they are smaller, quicker and argulably more nimble.
11+
Historically Java was able to handle the biggest enterprise problem(s) with its "Write once, run anywhere" (WORA) paradigm. With Cloud Native Applications growing in popularity, things like running applications as linux containers, serverless taking center stage -- Java was pushed back by languages like golang, node.js as the forerunner to build Cloud Native Applications as they are smaller, quicker and arguably more nimble.
1212
1313
Quarkus is Kubernetes Native Java stack tailored for GraalVM & OpenJDK HotSpot, crafted from the best of breed Java libraries and standards.
1414

documentation/modules/ROOT/pages/dev-services.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ quarkus.hibernate-orm.database.generation=drop-and-create
186186
quarkus.hibernate-orm.sql-load-script=import.sql
187187
----
188188

189-
NOTE: We added a %prod. prefix to some of the properties. This prefix makes it so these property will only be evaluated with the (default) prod profile. In dev mode these values will be ignored, thus triggering the Dev Services creation.
189+
NOTE: We added a %prod. prefix to some of the properties. This prefix makes it so these properties will only be evaluated with the (default) prod profile. In dev mode these values will be ignored, thus triggering the Dev Services creation.
190190

191191
=== Create a postgresql database
192192

@@ -286,4 +286,4 @@ And finally, redeploy the application:
286286
[source,bash]
287287
----
288288
kubectl apply -f target/kubernetes/kubernetes.yml
289-
----
289+
----

documentation/modules/ROOT/pages/health.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public class LivenessProbe implements HealthCheck {
9696

9797
== Add a custom readiness probe
9898

99-
In dev mode, all your heath checks are visible in health UI: http://localhost:8080/q/health-ui/.
99+
In dev mode, all your health checks are visible in health UI: http://localhost:8080/q/health-ui/.
100100

101101
Some extensions may provide default health checks, including that the extension will automatically register its health checks.
102102
For example, quarkus-agroal (that is used to manage Quarkus datasources) automatically registers a readiness health check that will validate each datasource.

0 commit comments

Comments
 (0)