Skip to content

Commit a226a7c

Browse files
sujl95gregturn
authored andcommitted
Fix typos in code.
Resolves #2775.
1 parent a4a7252 commit a226a7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

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

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

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

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)