diff --git a/spring-framework-reference/src/jdbc.xml b/spring-framework-reference/src/jdbc.xml
index db70eb2dfff..f5ff5d2b324 100644
--- a/spring-framework-reference/src/jdbc.xml
+++ b/spring-framework-reference/src/jdbc.xml
@@ -1368,7 +1368,7 @@ dataSource.setPassword("");
processing using both the JdbcTemplate and the
SimpleJdbcTemplate.
-
+
Basic batch operations with the JdbcTemplate
You accomplish JdbcTemplate batch
@@ -1418,7 +1418,7 @@ dataSource.setPassword("");
you to signal the end of the batch.
-
+
Batch operations with a List of objects
Both the JdbcTemplate and the
@@ -1489,7 +1489,7 @@ dataSource.setPassword("");
driver returns a -2 value.
-
+
Batch operations with multiple batches
The last example of a batch update deals with batches that are so
@@ -1502,7 +1502,7 @@ dataSource.setPassword("");
ParameterizedPreparedStatementSetter to set the
values for the parameters of the prepared statement. The framework loops
over the provided values and breaks the update calls into batches of the
- size specified.
+ size specified.
This example shows a batch update using a batch size of
100: