@@ -451,7 +451,7 @@ public <S> CompletableFuture<List<S>> query(@NotNull String sql, @Nullable Prepa
451451
452452 /**
453453 * Executes a query given a SQL statement: it will be used to create a PreparedStatement.
454- * Then a list of arguments will be bind to the query.
454+ * Then a list of arguments will be bound to the query.
455455 * The {@link ResultSetExtractor} implementation will read the ResultSet.
456456 * @param sql the query to execute
457457 * @param args arguments to bind to the query
@@ -465,7 +465,7 @@ public <S> CompletableFuture<S> query(@NotNull String sql, @Nullable Object[] ar
465465
466466 /**
467467 * Executes a query given a SQL statement: it will be used to create a PreparedStatement.
468- * Then a list of arguments will be bind to the query.
468+ * Then a list of arguments will be bound to the query.
469469 * Each row of the ResultSet will be map to a result object via a {@link RowMapper} implementation.
470470 * @param sql the query to execute
471471 * @param args arguments to bind to the query
@@ -479,7 +479,7 @@ public <S> CompletableFuture<List<S>> queryForList(@NotNull String sql, @Nullabl
479479
480480 /**
481481 * Executes a query given a SQL statement: it will be used to create a PreparedStatement.
482- * Then a list of arguments will be bind to the query.
482+ * Then a list of arguments will be bound to the query.
483483 * Each row of the ResultSet will be map to a result object via a {@link RowMapper} implementation.
484484 *
485485 * <p>Note: use of this method is discouraged when the query doesn't supply exactly one row.
0 commit comments