Skip to content

Commit 1ff07d0

Browse files
authored
fix: Update JSONRPCTransportConfig option in README (#249)
# Description Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [x] Follow the [`CONTRIBUTING` Guide](../CONTRIBUTING.md). - [x] Make your Pull Request title in the <https://www.conventionalcommits.org/> specification. - Important Prefixes for [release-please](https://github.com/googleapis/release-please): - `fix:` which represents bug fixes, and correlates to a [SemVer](https://semver.org/) patch. - `feat:` represents a new feature, and correlates to a SemVer minor. - `feat!:`, or `fix!:`, `refactor!:`, etc., which represent a breaking change (indicated by the `!`) and will result in a SemVer major. - [x] Ensure the tests pass - [x] Appropriate READMEs were updated (if necessary)
1 parent 09cca84 commit 1ff07d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,9 @@ Different transport protocols can be configured with specific settings using spe
316316

317317
##### JSON-RPC Transport Configuration
318318

319-
For the JSON-RPC transport, if you'd like to use the default `JdkA2AHttpClient`, no additional
320-
configuration is needed. To use a custom HTTP client implementation, simply create a `JSONRPCTransportConfig`
321-
as follows:
319+
For the JSON-RPC transport, to use the default `JdkA2AHttpClient`, provide a `JSONRPCTransportConfig` created with its default constructor.
320+
321+
To use a custom HTTP client implementation, simply create a `JSONRPCTransportConfig` as follows:
322322

323323
```java
324324
// Create a custom HTTP client

0 commit comments

Comments
 (0)