Skip to content

Commit db1f49f

Browse files
authored
Merge pull request #616 from pgrimaud/develop
Fix typos
2 parents 958f6de + bce7e73 commit db1f49f

15 files changed

+21
-21
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To write a blog:
4949
- `extension` used for blogs related to a specific extension.
5050
- `user-story` used for stories from users/companies adopting Quarkus.
5151
- `development-tips` used for blogs with tips to develop using Quarkus or Quarkus itself.
52-
- add a tech specific, like `kafka`, if your post has a signficant mention/relevance to that technology.
52+
- add a tech specific, like `kafka`, if your post has a significant mention/relevance to that technology.
5353
- it's in asciidoc format, there is an example as shown with [2019-06-05-quarkus-and-web-ui-development-mode.adoc](https://github.com/quarkusio/quarkusio.github.io/blob/develop/_posts/2019-06-05-quarkus-and-web-ui-development-mode.adoc)
5454
- send a pull request against the develop branch and voilà
5555

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ pagination:
112112
# Optional, defines the field that the posts should be sorted on (omit to default to 'date')
113113
sort_field: 'date'
114114

115-
# Optional, sorts the posts in reverse order (omit to default decending or sort_reverse: true)
115+
# Optional, sorts the posts in reverse order (omit to default descending or sort_reverse: true)
116116
sort_reverse: true
117117

118118
# Optional, the default category to use, omit or just leave this as 'posts' to get a backwards-compatible behavior (all posts)

_generated-config/config/quarkus-s2i-s2i-config.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ a|icon:lock[title=Fixed at build time] [[quarkus-s2i-s2i-config_quarkus.s2i.jar-
4848

4949
[.description]
5050
--
51-
The directory where the jar is added during the assemble phase. This is dependant on the s2i image and should be supplied if a non default image is used.
51+
The directory where the jar is added during the assemble phase. This is dependent on the s2i image and should be supplied if a non default image is used.
5252
--|string
5353
|`/deployments/`
5454

@@ -66,7 +66,7 @@ a|icon:lock[title=Fixed at build time] [[quarkus-s2i-s2i-config_quarkus.s2i.nati
6666

6767
[.description]
6868
--
69-
The directory where the native binary is added during the assemble phase. This is dependant on the s2i image and should be supplied if a non-default image is used.
69+
The directory where the native binary is added during the assemble phase. This is dependent on the s2i image and should be supplied if a non-default image is used.
7070
--|string
7171
|`/home/quarkus/`
7272

_guides/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.

_guides/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

@@ -793,7 +793,7 @@ That's why there is the Quarkus Platform.
793793

794794
*Quarkus Platform*
795795

796-
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:
796+
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:
797797

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

_guides/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

_guides/maven-tooling.adoc

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

466466
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
467-
option, this takes a comma seperated list of entries to ignore.
467+
option, this takes a comma separated list of entries to ignore.
468468

469469
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.
470470

_guides/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
----

_guides/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.

_guides/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

0 commit comments

Comments
 (0)