Skip to content

Commit 587053a

Browse files
authored
Merge pull request #9853 from gsmet/report-typo-fixes
Report typo fixes contributed by Pierre Grimaud
2 parents e62c0fa + 46bb009 commit 587053a

File tree

13 files changed

+24
-24
lines changed

13 files changed

+24
-24
lines changed

docs/src/main/asciidoc/amazon-lambda.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ This is explicitly set in `manage.sh` `cmd_create()`. Whilst the native image po
489489
== Using HTTPS or SSL/TLS
490490

491491
If your code makes HTTPS calls, such as to a micro-service (or AWS service), you will need to add configuration to the native image,
492-
as GraalVM will only include the dependencies when explictly declared. Quarkus, by default enables this functionality on extensions that implicitly require it.
492+
as GraalVM will only include the dependencies when explicitly declared. Quarkus, by default enables this functionality on extensions that implicitly require it.
493493
For further information, please consult the link:native-and-ssl[Quarkus SSL guide]
494494

495495
Open src/main/resources/application.properties and add the following line to enable SSL in your native image.

docs/src/main/asciidoc/building-my-first-extension.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Usually, Java frameworks do their bootstrapping during the runtime before actual
6161
* Having a peak of resource consumption at bootstrap: in a constrained environment, you will need to size the needed resources based on your technical bootstrap needs rather than your actual business needs.
6262

6363
Quarkus' philosophy is to prevent as much as possible slow and memory intensive dynamic code execution by shifting left these actions and eventually do them during the build time.
64-
A Quarkus extension is a Java piece of code acting as an adapter layer for your favorite libary or technology.
64+
A Quarkus extension is a Java piece of code acting as an adapter layer for your favorite library or technology.
6565

6666
== Description of a Quarkus extension
6767

@@ -794,7 +794,7 @@ That's why there is the Quarkus Platform.
794794

795795
*Quarkus Platform*
796796

797-
Quarkus proposes a `quarkus-universe-bom` which is a certified list of extensions placed under the Quarkus Platform label. From an application developper, the objectives of the platform are:
797+
Quarkus proposes a `quarkus-universe-bom` which is a certified list of extensions placed under the Quarkus Platform label. From an application developer, the objectives of the platform are:
798798

799799
* To guarantee a supportability of the extension (bugfix, security issues, dependency upgrades)
800800
* To ease the extension discovery through the Quarkus CLI or https://code.quarkus.io/

docs/src/main/asciidoc/kafka-streams.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ kafkacat -b kafka:9092 -C -o beginning -q -t temperatures-aggregated
582582
----
583583

584584
You should see new values arrive as the producer continues to emit temperature measurements,
585-
each value on the outbound topic showing the mininum, maxium and average temperature values of the represented weather station.
585+
each value on the outbound topic showing the minimum, maximum and average temperature values of the represented weather station.
586586

587587
== Interactive Queries
588588

docs/src/main/asciidoc/maven-tooling.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ Quarkus Maven plugin supports the generation of Uber-Jars by specifying a `quark
479479
The original jar will still be present in the `target` directory but it will be renamed to contain the `.original` suffix.
480480

481481
When building an Uber-Jar you can specify entries that you want to exclude from the generated jar by using the `quarkus.package.ignored-entries` configuration
482-
option, this takes a comma seperated list of entries to ignore.
482+
option, this takes a comma separated list of entries to ignore.
483483

484484
Uber-Jar creation by default excludes link:https://docs.oracle.com/javase/tutorial/deployment/jar/intro.html[signature files] that might be present in the dependencies of the application.
485485

docs/src/main/asciidoc/microprofile-fault-tolerance.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ public class CoffeeRepositoryService {
391391
}
392392
----
393393

394-
And inject the code bellow into the `CoffeeResource` endpoint:
394+
And inject the code below into the `CoffeeResource` endpoint:
395395

396396
[source,java]
397397
----

docs/src/main/asciidoc/neo4j.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Cypher is used to for both querying the graph and creating or updating nodes and
1818
As a declarative language it used to tell the database what to do and not how to do it.
1919

2020
NOTE: Learn more about Cypher in the https://neo4j.com/docs/cypher-manual/current/[Neo4j Cypher manual].
21-
Cypher is not only availabe in Neo4j, but for example coming to https://github.com/opencypher/morpheus[Apache Spark].
21+
Cypher is not only available in Neo4j, but for example coming to https://github.com/opencypher/morpheus[Apache Spark].
2222
A spec called http://www.opencypher.org[OpenCypher] is available, too.
2323

2424
Clients communicate over the so called Bolt protocol with the database.

docs/src/main/asciidoc/qute-reference.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ A typical example is the for/each loop - during iteration the content of the sec
184184
[TIP]
185185
====
186186
Data passed to the template instance are always accessible using the `data` namespace.
187-
This could be useful to access data for which the key is overriden:
187+
This could be useful to access data for which the key is overridden:
188188
189189
[source,html]
190190
----
@@ -542,8 +542,8 @@ These sections can be used to include another template and possibly override som
542542
</body>
543543
</html>
544544
----
545-
<1> `insert` sections are used to specify parts that could be overriden by a template that includes the given template.
546-
<2> An `insert` section may define the default content that is rendered if not overriden.
545+
<1> `insert` sections are used to specify parts that could be overridden by a template that includes the given template.
546+
<2> An `insert` section may define the default content that is rendered if not overridden.
547547

548548
.Template "detail"
549549
[source,html]
@@ -558,7 +558,7 @@ These sections can be used to include another template and possibly override som
558558
{/include}
559559
----
560560
<1> `include` section is used to specify the extended template.
561-
<2> Nested blocks are used to specify the parts that should be overriden.
561+
<2> Nested blocks are used to specify the parts that should be overridden.
562562

563563
NOTE: Section blocks can also define an optional end tag - `{/title}`.
564564

docs/src/main/asciidoc/reactive-sql-clients.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,10 +508,10 @@ public static Uni<Void> insertTwoFruits(PgPool client, Fruit fruit1, Fruit fruit
508508
}
509509
----
510510

511-
In this example, the two insertions are not dependant on each other and are executed concurrently (but in the same transaction).
511+
In this example, the two insertions are not dependent on each other and are executed concurrently (but in the same transaction).
512512
This transaction is committed on success and rolled back on failure.
513513

514-
You can also create dependant actions as follows:
514+
You can also create dependent actions as follows:
515515

516516
[source, java]
517517
----

docs/src/main/asciidoc/security-jdbc.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ quarkus.security.jdbc.principal-query.attribute-mappings.0.index=2 <3>
204204
quarkus.security.jdbc.principal-query.attribute-mappings.0.to=groups
205205
----
206206

207-
The `elytron-security-jdbc` extension requires at least one principal query to autenticate the user and its identity.
207+
The `elytron-security-jdbc` extension requires at least one principal query to authenticate the user and its identity.
208208

209209
<1> We define a parameterized SQL statement (with exactly 1 parameter) which should return the user's password plus any additional information you want to load.
210210
<2> We configure the password mapper with the position of the password field in the `SELECT` fields and other information like salt, hash encoding, etc.

docs/src/main/asciidoc/security-jwt.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ nQIDAQAB
316316

317317
=== Generating a JWT
318318

319-
Often one obtains a JWT from an identity manager like https://www.keycloak.org/[Keycloak], but for this quickstart we will generate our own using the JWT generation API provided by `smallrye-jwt` (see <<generate-jwt-tokens, Generate JWT tokens with SmallRye JWT>> for more infomation) and the TokenUtils class shown in the following listing. Take this source and place it into `security-jwt-quickstart/src/test/java/org/acme/security/jwt/TokenUtils.java`.
319+
Often one obtains a JWT from an identity manager like https://www.keycloak.org/[Keycloak], but for this quickstart we will generate our own using the JWT generation API provided by `smallrye-jwt` (see <<generate-jwt-tokens, Generate JWT tokens with SmallRye JWT>> for more information) and the TokenUtils class shown in the following listing. Take this source and place it into `security-jwt-quickstart/src/test/java/org/acme/security/jwt/TokenUtils.java`.
320320

321321

322322
.JWT utility class

0 commit comments

Comments
 (0)