diff --git a/docs/src/main/asciidoc/websockets-next-reference.adoc b/docs/src/main/asciidoc/websockets-next-reference.adoc index 024567a8ab97c..779057a83e110 100644 --- a/docs/src/main/asciidoc/websockets-next-reference.adoc +++ b/docs/src/main/asciidoc/websockets-next-reference.adoc @@ -593,7 +593,7 @@ Methods annotated with `@OnOpen`, `@OnTextMessage`, `@OnBinaryMessage`, and `@On @Inject WebSocketConnection connection; ---- -NOTE: Note that outside of these methos, the `WebSocketConnection` object is not available. However, it is possible to <>. +NOTE: Note that outside of these methods, the `WebSocketConnection` object is not available. However, it is possible to <>. The connection can be used to send messages to the client, access the path parameters, broadcast messages to all connected clients, etc. @@ -909,7 +909,7 @@ Methods annotated with `@OnOpen`, `@OnTextMessage`, `@OnBinaryMessage`, and `@On @Inject WebSocketClientConnection connection; ---- -NOTE: Note that outside of these methos, the `WebSocketClientConnection` object is not available. However, it is possible to <>. +NOTE: Note that outside of these methods, the `WebSocketClientConnection` object is not available. However, it is possible to <>. The connection can be used to send messages to the client, access the path parameters, etc. diff --git a/independent-projects/qute/core/src/main/java/io/quarkus/qute/TemplateData.java b/independent-projects/qute/core/src/main/java/io/quarkus/qute/TemplateData.java index 6f0542d3a0820..847c4315110b4 100644 --- a/independent-projects/qute/core/src/main/java/io/quarkus/qute/TemplateData.java +++ b/independent-projects/qute/core/src/main/java/io/quarkus/qute/TemplateData.java @@ -18,7 +18,7 @@ * non-public members, constructors, static initializers, static, synthetic and void methods are always ignored. *

* If the {@link #namespace()} is set to a non-empty value then a namespace resolver is automatically generated to access static - * fields and methos of the target class. + * fields and methods of the target class. * * @see ValueResolver * @see NamespaceResolver @@ -60,7 +60,7 @@ boolean properties() default false; /** - * If set to a non-empty value then a namespace resolver is automatically generated to access static fields and methos of + * If set to a non-empty value then a namespace resolver is automatically generated to access static fields and methods of * the target class. *

* By default, the namespace is the FQCN of the target class where dots and dollar signs are replaced by underscores, for