Skip to content

Commit 2e12506

Browse files
committed
Minor fixes to doc pages
1 parent 522df5a commit 2e12506

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

manual/core/graalvm/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
## Using the driver in GraalVM native images
1+
## GraalVM native images
22

33
### Quick overview
44

5-
* [GraalVM Native images](https://www.graalvm.org/reference-manual/native-image/) using the driver
6-
can be built with no additional configuration starting with driver 4.13.0.
5+
* [GraalVM native images](https://www.graalvm.org/reference-manual/native-image/) can be built with
6+
no additional configuration starting with driver 4.13.0.
77
* But extra configurations are required in a few cases:
88
* When using [reactive programming](../reactive);
99
* When using [Jackson](../integration#Jackson);
@@ -132,7 +132,7 @@ following configurations must be added:
132132

133133
### Using the Jackson JSON library
134134

135-
[Jackson](https://github.com/FasterXML/jackson) is used in [a few places](../integration#Jackson) in
135+
[Jackson](https://github.com/FasterXML/jackson) is used in [a few places](../integration#jackson) in
136136
the driver, but is an optional dependency; if you intend to use Jackson, the following
137137
configurations must be added:
138138

@@ -223,7 +223,7 @@ configuration is required:
223223

224224
### Native calls
225225

226-
The driver performs a few [native calls](../integration#Native-libraries) using
226+
The driver performs a few [native calls](../integration#native-libraries) using
227227
[JNR](https://github.com/jnr).
228228

229229
Starting with driver 4.7.0, native calls are also possible in a GraalVM native image, without any

manual/core/non_blocking/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ primitives such as atomic variables and CAS (compare-and-swap) instructions.
2929

3030
A further distinction is generally established between "lock-free" and "wait-free" algorithms: the
3131
former ones allow progress of the overall system, while the latter ones allow each thread to make
32-
progress at any time. This distinction is however rather theoretical and is outside of the scope of
32+
progress at any time. This distinction is however rather theoretical and is outside the scope of
3333
this document.
3434

3535
[lock-free]: https://www.baeldung.com/lock-free-programming

0 commit comments

Comments
 (0)