Fix typos in code.

Resolves #2775.
This commit is contained in:
TheWing
2023-01-24 18:55:04 +09:00
committed by Greg L. Turnquist
parent 5122dd89dc
commit 8e13992139
2 changed files with 2 additions and 2 deletions

View File

@@ -180,7 +180,7 @@ public class JpaMetamodelMappingContext
} catch (IllegalArgumentException o_O) {
// Fall back to inspect *all* managed types manually as Metamodel.managedType(…) only
// returns for entities, embeddables and managed supperclasses.
// returns for entities, embeddables and managed superclasses.
for (ManagedType<?> managedType : model.getManagedTypes()) {
if (type.equals(managedType.getJavaType())) {

View File

@@ -27,7 +27,7 @@ import org.springframework.orm.jpa.persistenceunit.MutablePersistenceUnitInfo;
/**
* Extends {@link DefaultPersistenceUnitManager} to merge configurations of one persistence unit residing in multiple
* {@code persistence.xml} files into one. This is necessary to allow the declaration of entities in seperate modules.
* {@code persistence.xml} files into one. This is necessary to allow the declaration of entities in separate modules.
*
* @author Oliver Gierke
* @link https://github.com/spring-projects/spring-framework/issues/7287