From a68b74161cb74f317d926a964a32a392ea401659 Mon Sep 17 00:00:00 2001 From: Pablo Saavedra Date: Wed, 12 Jul 2023 09:19:12 -0300 Subject: [PATCH] Fixed a typo --- .../src/main/java/io/vertx/sqlclient/impl/PoolImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vertx-sql-client/src/main/java/io/vertx/sqlclient/impl/PoolImpl.java b/vertx-sql-client/src/main/java/io/vertx/sqlclient/impl/PoolImpl.java index a1525b5d1..a848e617d 100644 --- a/vertx-sql-client/src/main/java/io/vertx/sqlclient/impl/PoolImpl.java +++ b/vertx-sql-client/src/main/java/io/vertx/sqlclient/impl/PoolImpl.java @@ -173,7 +173,7 @@ public Future schedule(ContextInternal context, CommandBase cmd) { //Acquires the connection honoring the pool's connection timeout acquire(context, connectionTimeout, promise); return promise.future().compose(pooled -> { - //We need to 'init' the connection of close will fail. + //We need to 'init' the connection or close will fail. pooled.init(pooled); return pooled.schedule(context, cmd) .eventually(v -> {