diff --git a/core/src/main/scala/akka/persistence/r2dbc/cleanup/javadsl/EventSourcedCleanup.scala b/core/src/main/scala/akka/persistence/r2dbc/cleanup/javadsl/EventSourcedCleanup.scala index bee4927a..0c4f461b 100644 --- a/core/src/main/scala/akka/persistence/r2dbc/cleanup/javadsl/EventSourcedCleanup.scala +++ b/core/src/main/scala/akka/persistence/r2dbc/cleanup/javadsl/EventSourcedCleanup.scala @@ -69,7 +69,7 @@ final class EventSourcedCleanup private (delegate: scaladsl.EventSourcedCleanup) * Delete events before a timestamp for the given persistence id. Snapshots are not deleted. * * This can be useful for `DurableStateBehavior` with change events, where the events are only used for the - * Projections and not for the recovery of the `DurableStateBehavior` state. The timestamp may correspond to the the + * Projections and not for the recovery of the `DurableStateBehavior` state. The timestamp may correspond to the * offset timestamp of the Projections, if events are not needed after all Projections have processed them. * * Be aware of that if all events of a persistenceId are removed the sequence number will start from 1 again if an @@ -87,7 +87,7 @@ final class EventSourcedCleanup private (delegate: scaladsl.EventSourcedCleanup) * Delete events before a timestamp for the given entityType and slice. Snapshots are not deleted. * * This can be useful for `DurableStateBehavior` with change events, where the events are only used for the - * Projections and not for the recovery of the `DurableStateBehavior` state. The timestamp may correspond to the the + * Projections and not for the recovery of the `DurableStateBehavior` state. The timestamp may correspond to the * offset timestamp of the Projections, if events are not needed after all Projections have processed them. * * Be aware of that if all events of a persistenceId are removed the sequence number will start from 1 again if an diff --git a/core/src/main/scala/akka/persistence/r2dbc/cleanup/scaladsl/EventSourcedCleanup.scala b/core/src/main/scala/akka/persistence/r2dbc/cleanup/scaladsl/EventSourcedCleanup.scala index 77cf4078..7e3932c2 100644 --- a/core/src/main/scala/akka/persistence/r2dbc/cleanup/scaladsl/EventSourcedCleanup.scala +++ b/core/src/main/scala/akka/persistence/r2dbc/cleanup/scaladsl/EventSourcedCleanup.scala @@ -98,7 +98,7 @@ final class EventSourcedCleanup(systemProvider: ClassicActorSystemProvider, conf * Delete events before a timestamp for the given persistence id. Snapshots are not deleted. * * This can be useful for `DurableStateBehavior` with change events, where the events are only used for the - * Projections and not for the recovery of the `DurableStateBehavior` state. The timestamp may correspond to the the + * Projections and not for the recovery of the `DurableStateBehavior` state. The timestamp may correspond to the * offset timestamp of the Projections, if events are not needed after all Projections have processed them. * * Be aware of that if all events of a persistenceId are removed the sequence number will start from 1 again if an @@ -118,7 +118,7 @@ final class EventSourcedCleanup(systemProvider: ClassicActorSystemProvider, conf * Delete events before a timestamp for the given entityType and slice. Snapshots are not deleted. * * This can be useful for `DurableStateBehavior` with change events, where the events are only used for the - * Projections and not for the recovery of the `DurableStateBehavior` state. The timestamp may correspond to the the + * Projections and not for the recovery of the `DurableStateBehavior` state. The timestamp may correspond to the * offset timestamp of the Projections, if events are not needed after all Projections have processed them. * * Be aware of that if all events of a persistenceId are removed the sequence number will start from 1 again if an