diff --git a/spring-data-relational/src/main/java/org/springframework/data/relational/core/mapping/event/BeforeConvertCallback.java b/spring-data-relational/src/main/java/org/springframework/data/relational/core/mapping/event/BeforeConvertCallback.java index c5c7eb9fe..b4f5b618f 100644 --- a/spring-data-relational/src/main/java/org/springframework/data/relational/core/mapping/event/BeforeConvertCallback.java +++ b/spring-data-relational/src/main/java/org/springframework/data/relational/core/mapping/event/BeforeConvertCallback.java @@ -19,7 +19,7 @@ import org.springframework.data.mapping.callback.EntityCallback; /** * An {@link EntityCallback} that gets invoked before the aggregate is converted into a database change. The decision if - * the change will be an insert or update is made after this callback gets called. + * the change will be an insert or update is made before this callback gets called. *
* This is the correct callback if you want to create Id values for new aggregates. *