From 235abe44e8033d62ee500fadf5ea208c5022dfb5 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Thu, 14 Dec 2017 15:57:41 +0100 Subject: [PATCH] Fix typo (#28) Thanks --- .../org/springframework/data/jdbc/core/SqlGeneratorSource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/jdbc/core/SqlGeneratorSource.java b/src/main/java/org/springframework/data/jdbc/core/SqlGeneratorSource.java index 319dc48ad..b07a63e5a 100644 --- a/src/main/java/org/springframework/data/jdbc/core/SqlGeneratorSource.java +++ b/src/main/java/org/springframework/data/jdbc/core/SqlGeneratorSource.java @@ -23,7 +23,7 @@ import java.util.Map; import org.springframework.data.jdbc.mapping.model.JdbcMappingContext; /** - * Provides {@link SqlGenerator}s per domain type. Instances get cched, so when asked multiple times for the same domain + * Provides {@link SqlGenerator}s per domain type. Instances get cached, so when asked multiple times for the same domain * type, the same generator will get returned. * * @author Jens Schauder