Skip to content

Commit

Permalink
Fix incorrect code in ApacheHttpClient.Builder docs. (#3527)
Browse files Browse the repository at this point in the history
  • Loading branch information
millems authored Oct 31, 2022
1 parent dd0c987 commit 87bc5cb
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,10 @@ public String clientName() {
* client builder for more information on configuring the HTTP layer.
*
* <pre class="brush: java">
* SdkHttpClient httpClient = SdkHttpClient.builder()
* .socketTimeout(Duration.ofSeconds(10))
* .build();
* SdkHttpClient httpClient =
* ApacheHttpClient.builder()
* .socketTimeout(Duration.ofSeconds(10))
* .build();
* </pre>
*/
public interface Builder extends SdkHttpClient.Builder<ApacheHttpClient.Builder> {
Expand Down

0 comments on commit 87bc5cb

Please sign in to comment.