DATAJPA-1341 - Fix typo in AbstractAuditable.

Original pull request: #275.
This commit is contained in:
Jose Manuel Portero Garcia
2018-05-08 23:28:07 +02:00
committed by Oliver Gierke
parent 32c3f6ca43
commit 299f92788e

View File

@@ -31,7 +31,7 @@ import org.springframework.data.domain.Auditable;
*
* @author Oliver Gierke
* @param <U> the auditing type. Typically some kind of user.
* @param <PK> the type of the auditing type's idenifier
* @param <PK> the type of the auditing type's identifier.
*/
@MappedSuperclass
public abstract class AbstractAuditable<U, PK extends Serializable> extends AbstractPersistable<PK> implements