diff --git a/src/main/java/org/springframework/data/domain/AbstractAggregateRoot.java b/src/main/java/org/springframework/data/domain/AbstractAggregateRoot.java index 04b58cb1f..bd8c6bc00 100644 --- a/src/main/java/org/springframework/data/domain/AbstractAggregateRoot.java +++ b/src/main/java/org/springframework/data/domain/AbstractAggregateRoot.java @@ -25,7 +25,7 @@ import org.springframework.util.Assert; /** * Convenience base class for aggregate roots that exposes a {@link #registerEvent(Object)} to capture domain events and - * expose them via {@link #domainEvents())}. The implementation is using the general event publication mechanism implied + * expose them via {@link #domainEvents()}. The implementation is using the general event publication mechanism implied * by {@link DomainEvents} and {@link AfterDomainEventPublication}. If in doubt or need to customize anything here, * rather build your own base class and use the annotations directly. *