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 e1a3c37284
commit d3d018984a

View File

@@ -36,7 +36,7 @@ import org.springframework.lang.Nullable;
* @author Christoph Strobl
* @author Mark Paluch
* @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>