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

chore: fix comments #18

Merged
merged 1 commit into from
Jan 9, 2024
Merged
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 @@ -168,7 +168,8 @@ public Builder(List<Endpoint> endpoints, String database) {
* set it, there will be a default implementation, which you can reconfigure
* if the default implementation is not satisfied.
* <p>
* Note: We do not close it to free resources, as we view it as shared.
* Note: We do not close it to free resources(if it needs to be closed), as we
* view it as shared.
*
* @param asyncPool async thread pool
* @return this builder
Expand Down Expand Up @@ -267,7 +268,7 @@ public Builder authInfo(AuthInfo authInfo) {
}

/**
* Sets the request router, The internal default implementation works well.
* Sets the request router. The internal default implementation works well.
* You don't need to set it unless you have special requirements.
*
* @param router the request router
Expand Down
Loading