Fix documentation of BeforeConvertCallback.

Closes #1673
This commit is contained in:
Jens Schauder
2023-11-21 11:20:29 +01:00
parent e2a7508adc
commit 8327810f7c

View File

@@ -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.
* <p>
* This is the correct callback if you want to create Id values for new aggregates.
* <p>