Skip to content

Commit 070609d

Browse files
committed
Sync documentation of main branch
1 parent cfa79bb commit 070609d

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

_versions/main/guides/container-image.adoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,3 +293,10 @@ include::{generated-dir}/config/quarkus-container-image-podman.adoc[opts=optiona
293293
In addition to the generic container image options, the `container-image-openshift` also provides the following options:
294294

295295
include::{generated-dir}/config/quarkus-container-image-openshift_quarkus.openshift.adoc[opts=optional, leveloffset=+1]
296+
297+
[[BuildpackOptions]]
298+
=== Buildpack Options
299+
300+
In addition to the generic container image options, the `container-image-buildpack` also provides the following options:
301+
302+
include::{generated-dir}/config/quarkus-container-image-buildpack_quarkus.buildpack.adoc[opts=optional,leveloffset=+1]

_versions/main/guides/qute-reference.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ A loop section may also define the `{#else}` block that is executed when there a
789789

790790
The `{#if}` section represents a basic control flow section.
791791
The simplest possible version accepts a single parameter and renders the content if the condition is evaluated to `true`.
792-
A condition without an operator evaluates to `true` if the value is not considered `falsy`, i.e. if the value is not `null`, `false`, an empty collection, an empty map, an empty array, an empty string/char sequence or a number equal to zero.
792+
A condition without an operator evaluates to `true` if the value is not considered `falsy`, i.e. if the value is not `null`, `false`, an empty collection, an empty map, an empty array, an empty string/char sequence, an empty `java.util.Optional`/`java.util.OptionalInt`/`java.util.OptionalLong`/`java.util.OptionalDouble` or a number equal to zero.
793793

794794
[source,html]
795795
----

_versions/main/guides/writing-extensions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ The `SyntheticBeanBuildItem` can be used to register a synthetic bean:
292292
@Record(STATIC_INIT)
293293
SyntheticBeanBuildItem syntheticBean(TestRecorder recorder) {
294294
return SyntheticBeanBuildItem.configure(Foo.class).scope(Singleton.class)
295-
.runtimeValue(recorder.createFoo("parameters are recorder in the bytecode")) <1>
295+
.runtimeValue(recorder.createFoo("parameters are recorded in the bytecode")) <1>
296296
.done();
297297
}
298298
----
@@ -305,7 +305,7 @@ SyntheticBeanBuildItem syntheticBean(TestRecorder recorder) {
305305
@Record(STATIC_INIT)
306306
SyntheticBeanBuildItem syntheticBean(TestRecorder recorder) {
307307
return SyntheticBeanBuildItem.configure(TestContext.class).scope(Singleton.class)
308-
.runtimeValue(recorder.createContext("parameters are recorder in the bytecode")) <1>
308+
.runtimeValue(recorder.createContext("parameters are recorded in the bytecode")) <1>
309309
.done();
310310
}
311311
----

0 commit comments

Comments
 (0)