From b8129121533da7aad7bfd5b1d41ea95418825452 Mon Sep 17 00:00:00 2001 From: hanmz Date: Tue, 23 Apr 2024 18:38:03 +0800 Subject: [PATCH] chore: fix typos in interface ClientAuthProvider and BookieAuthProvider (#4311) --- .../java/org/apache/bookkeeper/auth/BookieAuthProvider.java | 2 +- .../java/org/apache/bookkeeper/auth/ClientAuthProvider.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bookkeeper-server/src/main/java/org/apache/bookkeeper/auth/BookieAuthProvider.java b/bookkeeper-server/src/main/java/org/apache/bookkeeper/auth/BookieAuthProvider.java index 4d733fb7f63..76a922b452e 100644 --- a/bookkeeper-server/src/main/java/org/apache/bookkeeper/auth/BookieAuthProvider.java +++ b/bookkeeper-server/src/main/java/org/apache/bookkeeper/auth/BookieAuthProvider.java @@ -39,7 +39,7 @@ interface Factory { /** * Initialize the factory with the server configuration * and protobuf message registry. Implementors must - * add any extention messages which contain the auth + * add any extension messages which contain the auth * payload, so that the server can decode auth messages * it receives from the client. */ diff --git a/bookkeeper-server/src/main/java/org/apache/bookkeeper/auth/ClientAuthProvider.java b/bookkeeper-server/src/main/java/org/apache/bookkeeper/auth/ClientAuthProvider.java index 3006c856f1b..a89deea2160 100644 --- a/bookkeeper-server/src/main/java/org/apache/bookkeeper/auth/ClientAuthProvider.java +++ b/bookkeeper-server/src/main/java/org/apache/bookkeeper/auth/ClientAuthProvider.java @@ -37,7 +37,7 @@ interface Factory { /** * Initialize the factory with the client configuration * and protobuf message registry. Implementors must - * add any extention messages which contain the auth + * add any extension messages which contain the auth * payload, so that the client can decode auth messages * it receives from the server. */