Skip to content

Commit

Permalink
Merge pull request quarkusio#42263 from gsmet/fix-rest-config-javadoc
Browse files Browse the repository at this point in the history
Fix a few typos in newly added REST Client doc
  • Loading branch information
gsmet authored Aug 1, 2024
2 parents 7f35270 + e314db8 commit 5a42a77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
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

0 comments on commit 5a42a77

Please sign in to comment.