Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix methos to methods typos #42436

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/websockets-next-reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -593,9 +593,9 @@
@Inject WebSocketConnection connection;
----

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

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

Check warning on line 598 in docs/src/main/asciidoc/websockets-next-reference.adoc

View workflow job for this annotation

GitHub Actions / Linting with Vale

[vale] reported by reviewdog 🐶 [Quarkus.TermsWarnings] Consider using 'and so on' rather than 'etc' unless updating existing content that uses the term. Raw Output: {"message": "[Quarkus.TermsWarnings] Consider using 'and so on' rather than 'etc' unless updating existing content that uses the term.", "location": {"path": "docs/src/main/asciidoc/websockets-next-reference.adoc", "range": {"start": {"line": 598, "column": 133}}}, "severity": "WARNING"}

[source, java]
----
Expand Down Expand Up @@ -909,9 +909,9 @@
@Inject WebSocketClientConnection connection;
----

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

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

Check warning on line 914 in docs/src/main/asciidoc/websockets-next-reference.adoc

View workflow job for this annotation

GitHub Actions / Linting with Vale

[vale] reported by reviewdog 🐶 [Quarkus.TermsWarnings] Consider using 'and so on' rather than 'etc' unless updating existing content that uses the term. Raw Output: {"message": "[Quarkus.TermsWarnings] Consider using 'and so on' rather than 'etc' unless updating existing content that uses the term.", "location": {"path": "docs/src/main/asciidoc/websockets-next-reference.adoc", "range": {"start": {"line": 914, "column": 88}}}, "severity": "WARNING"}

[source, java]
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* non-public members, constructors, static initializers, static, synthetic and void methods are always ignored.
* <p>
* 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
Expand Down Expand Up @@ -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.
* <p>
* By default, the namespace is the FQCN of the target class where dots and dollar signs are replaced by underscores, for
Expand Down
Loading