From 9db0f14c0b2bd21a6d3bcd6018991c4c99902320 Mon Sep 17 00:00:00 2001 From: Jin Hai Date: Mon, 17 Nov 2025 12:29:37 +0800 Subject: [PATCH] Fix typos Signed-off-by: Jin Hai --- common/data_source/interfaces.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/data_source/interfaces.py b/common/data_source/interfaces.py index 9c5f00141..5e5d3aa2e 100644 --- a/common/data_source/interfaces.py +++ b/common/data_source/interfaces.py @@ -69,7 +69,7 @@ class SlimConnectorWithPermSync(ABC): class CheckpointedConnectorWithPermSync(ABC): - """Checkpointed connector interface (with permission sync)""" + """Checkpoint connector interface (with permission sync)""" @abstractmethod def load_from_checkpoint( @@ -143,7 +143,7 @@ class CredentialsProviderInterface(abc.ABC, Generic[T]): @abc.abstractmethod def is_dynamic(self) -> bool: - """If dynamic, the credentials may change during usage ... maening the client + """If dynamic, the credentials may change during usage ... meaning the client needs to use the locking features of the credentials provider to operate correctly.