Skip to content

Commit 8e13992

Browse files
sujl95gregturn
authored andcommitted
Fix typos in code.
Resolves #2775.
1 parent 5122dd8 commit 8e13992

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-data-jpa/src/main/java/org/springframework/data/jpa/mapping/JpaMetamodelMappingContext.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ private Metamodel getMetamodelFor(Class<?> type) {
180180
} catch (IllegalArgumentException o_O) {
181181

182182
// Fall back to inspect *all* managed types manually as Metamodel.managedType(…) only
183-
// returns for entities, embeddables and managed supperclasses.
183+
// returns for entities, embeddables and managed superclasses.
184184

185185
for (ManagedType<?> managedType : model.getManagedTypes()) {
186186
if (type.equals(managedType.getJavaType())) {

spring-data-jpa/src/main/java/org/springframework/data/jpa/support/MergingPersistenceUnitManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
/**
2929
* Extends {@link DefaultPersistenceUnitManager} to merge configurations of one persistence unit residing in multiple
30-
* {@code persistence.xml} files into one. This is necessary to allow the declaration of entities in seperate modules.
30+
* {@code persistence.xml} files into one. This is necessary to allow the declaration of entities in separate modules.
3131
*
3232
* @author Oliver Gierke
3333
* @link https://github.com/spring-projects/spring-framework/issues/7287

0 commit comments

Comments
 (0)