From f5e61fdb9fa71a758b2a45f39dbd26b1d7446b09 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Fri, 12 Apr 2019 09:23:30 +0200 Subject: [PATCH] DATAJDBC-361 - Fix minor typos in SqlGenerator. --- .../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 16e1e92d8a..10df155c71 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 @@ String getFindAllInList() { } /** - * 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}. */