From eb90efc24a9420f5021441b80fb25afc722f07e1 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Fri, 12 Apr 2019 12:29:35 +0200 Subject: [PATCH] DATAJDBC-361 - Fix minor typos in SqlGenerator. Original pull request: #148. --- .../java/org/springframework/data/jdbc/core/SqlGenerator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/SqlGenerator.java b/spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/SqlGenerator.java index 16e1e92d..10df155c 100644 --- a/spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/SqlGenerator.java +++ b/spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/SqlGenerator.java @@ -106,7 +106,7 @@ class SqlGenerator { } /** - * Returns a query for selecting all simple properties of an entitty, including those for one-to-one relationhships. + * Returns a query for selecting all simple properties of an entity, including those for one-to-one relationships. * Results are filtered using an {@code IN}-clause on the id column. * * @return a SQL statement. Guaranteed to be not {@code null}. @@ -116,7 +116,7 @@ class SqlGenerator { } /** - * Returns a query for selecting all simple properties of an entitty, including those for one-to-one relationhships. + * Returns a query for selecting all simple properties of an entity, including those for one-to-one relationships. * * @return a SQL statement. Guaranteed to be not {@code null}. */