From e664f0b9ce8612aed6e2cc1a398d24c4b6d79c67 Mon Sep 17 00:00:00 2001 From: Hanlu Date: Wed, 9 Jul 2025 19:11:49 +0800 Subject: [PATCH] chore: Remove redundant words in comment (#2309) remove redundant words in comment Signed-off-by: liangmulu --- src/data/cassandra/Handle.hpp | 4 ++-- src/migration/MigrationManagerInterface.hpp | 2 +- src/migration/impl/MigrationManagerBase.hpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/data/cassandra/Handle.hpp b/src/data/cassandra/Handle.hpp index cf1161fed..27eeddfc5 100644 --- a/src/data/cassandra/Handle.hpp +++ b/src/data/cassandra/Handle.hpp @@ -99,7 +99,7 @@ public: connect() const; /** - * @brief Connect to the the specified keyspace asynchronously. + * @brief Connect to the specified keyspace asynchronously. * * @param keyspace The keyspace to use * @return A future @@ -137,7 +137,7 @@ public: disconnect() const; /** - * @brief Reconnect to the the specified keyspace asynchronously. + * @brief Reconnect to the specified keyspace asynchronously. * * @param keyspace The keyspace to use * @return A future diff --git a/src/migration/MigrationManagerInterface.hpp b/src/migration/MigrationManagerInterface.hpp index 0a39283f0..3bc1644e9 100644 --- a/src/migration/MigrationManagerInterface.hpp +++ b/src/migration/MigrationManagerInterface.hpp @@ -32,7 +32,7 @@ namespace migration { */ struct MigrationManagerInterface : virtual public MigrationInspectorInterface { /** - * @brief Run the the migration according to the given migrator's name + * @brief Run the migration according to the given migrator's name */ virtual void runMigration(std::string const&) = 0; diff --git a/src/migration/impl/MigrationManagerBase.hpp b/src/migration/impl/MigrationManagerBase.hpp index afe891755..775a3f90f 100644 --- a/src/migration/impl/MigrationManagerBase.hpp +++ b/src/migration/impl/MigrationManagerBase.hpp @@ -56,7 +56,7 @@ public: } /** - * @brief Run the the migration according to the given migrator's name + * @brief Run the migration according to the given migrator's name * * @param name The name of the migrator */