From 9505420ae81eaaa51c49e26f9406b9e013d32e33 Mon Sep 17 00:00:00 2001 From: Eric Bottard Date: Tue, 22 Sep 2015 10:35:24 +0200 Subject: [PATCH] Fix grammar error in doco --- src/reference/asciidoc/jdbc.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reference/asciidoc/jdbc.adoc b/src/reference/asciidoc/jdbc.adoc index 381b096744..e190ea5320 100644 --- a/src/reference/asciidoc/jdbc.adoc +++ b/src/reference/asciidoc/jdbc.adoc @@ -193,7 +193,7 @@ Starting with _Spring Integration 4.2_, the `MessagePreparedStatementSetter` is the specification of parameters on the `PreparedStatement` manually, in the `requestMessage` context. This class plays exactly the same role as `PreparedStatementSetter` in the standard Spring JDBC API. Actually it is invoked directly from an inline `PreparedStatementSetter` implementation, when the `JdbcMessageHandler` -performs invokes `execute` on the `JdbcTemplate`. +invokes `execute` on the `JdbcTemplate`. This functional interface option is mutually exclusive with `sqlParameterSourceFactory` and can be used as a more powerful alternative to populate parameters of the `PreparedStatement` from the `requestMessage`.