MINOR: Fix typo in `AdminBootstrapAddresses` (#20352)

Fix the typo in `AdminBootstrapAddresses`.

Reviewers: TengYao Chi <frankvicky@apache.org>, Ken Huang
<s7133700@gmail.com>
This commit is contained in:
stroller 2025-08-15 14:19:40 +08:00 committed by GitHub
parent c4fb1008c4
commit 58d894170a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public final class AdminBootstrapAddresses {
public String toString() {
StringBuilder bld = new StringBuilder();
bld.append("AdminBootstrapAddresses");
bld.append("(usingBoostrapControllers=").append(usingBootstrapControllers);
bld.append("(usingBootstrapControllers=").append(usingBootstrapControllers);
bld.append(", addresses=[");
String prefix = "";
for (InetSocketAddress address : addresses) {