From 9647e72c273648f7fd96cbbda5edd267f2971f8e Mon Sep 17 00:00:00 2001 From: Matthias Merdes Date: Wed, 19 Dec 2018 17:04:30 +0100 Subject: [PATCH] DATACMNS-1580 - Fix typo in Javadoc. Original pull request: #329. --- .../org/springframework/data/domain/AbstractAggregateRoot.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. *