Fix comment typo

This commit is contained in:
A.J. Beamon 2021-04-21 12:25:03 -07:00
parent 28f8a2716e
commit f485d7fa5e
2 changed files with 2 additions and 2 deletions

View File

@ -1569,7 +1569,7 @@ void MultiVersionApi::addNetworkThreadCompletionHook(void (*hook)(void*), void*
}
}
// Creates an IDatabase object that represents a connections to the cluster
// Creates an IDatabase object that represents a connection to the cluster
Reference<IDatabase> MultiVersionApi::createDatabase(const char* clusterFilePath) {
lock.enter();
if (!networkSetup) {

View File

@ -526,7 +526,7 @@ public:
void stopNetwork() override;
void addNetworkThreadCompletionHook(void (*hook)(void*), void* hookParameter) override;
// Creates an IDatabase object that represents a connections to the cluster
// Creates an IDatabase object that represents a connection to the cluster
Reference<IDatabase> createDatabase(const char* clusterFilePath) override;
static MultiVersionApi* api;