From 9cf5dc4591533a9ccf1d14f0bd2cdf100c68a389 Mon Sep 17 00:00:00 2001 From: Alexandre Dutra Date: Fri, 28 Jun 2024 10:02:43 +0200 Subject: [PATCH] nit: fix typo in NessieConfigConstants (#8959) --- .../java/org/projectnessie/client/NessieConfigConstants.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/client/src/main/java/org/projectnessie/client/NessieConfigConstants.java b/api/client/src/main/java/org/projectnessie/client/NessieConfigConstants.java index a6730e81207..06c3d5b8e54 100644 --- a/api/client/src/main/java/org/projectnessie/client/NessieConfigConstants.java +++ b/api/client/src/main/java/org/projectnessie/client/NessieConfigConstants.java @@ -282,13 +282,13 @@ public final class NessieConfigConstants { *
  • The value {@value #CURRENT_ACCESS_TOKEN}, if the client should use its current access * token; *
  • The value {@value #CURRENT_REFRESH_TOKEN}, if the client should use its current refresh - * token (if available); + * token (a refresh token must be available in this case); *
  • An arbitrary token: in this case, the client will always use the static token provided * here. * * * The default is to use the current access token. Note: when using token exchange as the initial - * grant type, no current access token will eb available: in this case, a valid, static subject + * grant type, no current access token will be available: in this case, a valid, static subject * token to exchange must be provided via configuration. */ @ConfigItem(section = "OAuth2 Authentication Token Exchange")