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 a few typos in newly added REST Client doc #42263

Merged
merged 1 commit into from
Aug 1, 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
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ interface RestClientBuildConfig {
Optional<String> scope();

/**
* If set to true, then Quarkus will ensure that all calls from the rest client go through a local proxy
* If set to true, then Quarkus will ensure that all calls from the REST client go through a local proxy
* server (that is managed by Quarkus).
* This can be very useful for capturing network traffic to a service that use HTTPS.
* This can be very useful for capturing network traffic to a service that uses HTTPS.
* <p>
* This property is not applicable to the RESTEasy Client, only the Quarkus Rest client (formerly RESTEasy Reactive
* This property is not applicable to the RESTEasy Client, only the Quarkus REST client (formerly RESTEasy Reactive
* client).
* <p>
* This property only applicable to dev and test mode.
Expand All @@ -56,7 +56,7 @@ interface RestClientBuildConfig {
* <p>
* The algorithm for picking between multiple provider is the following:
* <ul>
* <li>If only the default is around, use it (it's name is {@code default})</li>
* <li>If only the default is around, use it (its name is {@code default})</li>
* <li>If there is only one besides the default, use it</li>
* <li>If there are multiple ones, fail</li>
* </ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public interface RestClientsConfig {
*/
@WithParentName
@WithDefaults
@ConfigDocMapKey("client")
Map<String, RestClientConfig> clients();

/**
Expand Down
Loading