Fix small typo in dialect section.

Original pull request #953.
This commit is contained in:
zimmse
2021-03-30 18:43:17 +02:00
committed by Jens Schauder
parent b6c41c68b3
commit 7a324e9fb5

View File

@@ -169,7 +169,7 @@ There are a couple of things one might want to customize in this setup.
=== Dialects
Spring Data JDBC uses implementations of the interface `Dialect` to encapsulate behavior that is specific to a database or its JDBC driver.
By default, the `AbstractJdbcConfiguration` tries to determine the database in use an register the correct `Dialect`.
By default, the `AbstractJdbcConfiguration` tries to determine the database in use and register the correct `Dialect`.
This behavior can be changed by overwriting `jdbcDialect(NamedParameterJdbcOperations)`.
If you use a database for which no dialect is available, then your application wont startup. In that case, youll have to ask your vendor to provide a `Dialect` implementation. Alternatively, you can: