Skip to content

Commit d41ab4c

Browse files
authored
Merge pull request #42436 from xstefank/fix-typo-websocket-doc
Fix methos to methods typos
2 parents 818a58d + 5856055 commit d41ab4c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/src/main/asciidoc/websockets-next-reference.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ Methods annotated with `@OnOpen`, `@OnTextMessage`, `@OnBinaryMessage`, and `@On
593593
@Inject WebSocketConnection connection;
594594
----
595595

596-
NOTE: Note that outside of these methos, the `WebSocketConnection` object is not available. However, it is possible to <<list-open-connections,list all open connections>>.
596+
NOTE: Note that outside of these methods, the `WebSocketConnection` object is not available. However, it is possible to <<list-open-connections,list all open connections>>.
597597

598598
The connection can be used to send messages to the client, access the path parameters, broadcast messages to all connected clients, etc.
599599

@@ -909,7 +909,7 @@ Methods annotated with `@OnOpen`, `@OnTextMessage`, `@OnBinaryMessage`, and `@On
909909
@Inject WebSocketClientConnection connection;
910910
----
911911

912-
NOTE: Note that outside of these methos, the `WebSocketClientConnection` object is not available. However, it is possible to <<list-open-client-connections,list all open client connections>>.
912+
NOTE: Note that outside of these methods, the `WebSocketClientConnection` object is not available. However, it is possible to <<list-open-client-connections,list all open client connections>>.
913913

914914
The connection can be used to send messages to the client, access the path parameters, etc.
915915

independent-projects/qute/core/src/main/java/io/quarkus/qute/TemplateData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* non-public members, constructors, static initializers, static, synthetic and void methods are always ignored.
1919
* <p>
2020
* If the {@link #namespace()} is set to a non-empty value then a namespace resolver is automatically generated to access static
21-
* fields and methos of the target class.
21+
* fields and methods of the target class.
2222
*
2323
* @see ValueResolver
2424
* @see NamespaceResolver
@@ -60,7 +60,7 @@
6060
boolean properties() default false;
6161

6262
/**
63-
* If set to a non-empty value then a namespace resolver is automatically generated to access static fields and methos of
63+
* If set to a non-empty value then a namespace resolver is automatically generated to access static fields and methods of
6464
* the target class.
6565
* <p>
6666
* By default, the namespace is the FQCN of the target class where dots and dollar signs are replaced by underscores, for

0 commit comments

Comments
 (0)