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 some typos in class ConnectStringParser and IOUtils #2161

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public final class ConnectStringParser {
private final ArrayList<InetSocketAddress> serverAddresses = new ArrayList<>();

/**
* Parse host and port by spliting client connectString
* Parse host and port by splitting client connectString
* with support for IPv6 literals
* @throws IllegalArgumentException
* for an invalid chroot path.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public static void cleanup(Logger log, Closeable... closeables) {
* Copies from one stream to another.
*
* @param in
* InputStrem to read from
* InputStream to read from
* @param out
* OutputStream to write to
* @param buffSize
Expand Down Expand Up @@ -100,7 +100,7 @@ public static void copyBytes(InputStream in, OutputStream out, int buffSize, boo
* Copies from one stream to another.
*
* @param in
* InputStrem to read from
* InputStream to read from
* @param out
* OutputStream to write to
* @param buffSize
Expand Down