Skip to content

Commit 635cc01

Browse files
Fixed a typo
1 parent 3527436 commit 635cc01

File tree

1 file changed

+1
-1
lines changed
  • vertx-sql-client/src/main/java/io/vertx/sqlclient/impl

1 file changed

+1
-1
lines changed

Diff for: vertx-sql-client/src/main/java/io/vertx/sqlclient/impl/PoolImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public <R> Future<R> schedule(ContextInternal context, CommandBase<R> cmd) {
173173
//Acquires the connection honoring the pool's connection timeout
174174
acquire(context, connectionTimeout, promise);
175175
return promise.future().compose(pooled -> {
176-
//We need to 'init' the connection of close will fail.
176+
//We need to 'init' the connection or close will fail.
177177
pooled.init(pooled);
178178
return pooled.schedule(context, cmd)
179179
.eventually(v -> {

0 commit comments

Comments
 (0)