From 01a3a7fb04acf6b23b253baddd021c5a670ef6f9 Mon Sep 17 00:00:00 2001 From: Peter Vlugter <59895+pvlugter@users.noreply.github.com> Date: Wed, 20 Dec 2023 19:24:37 +1300 Subject: [PATCH] docs: fix double `the` in cleanup api docs (#498) --- .../r2dbc/cleanup/javadsl/EventSourcedCleanup.scala | 4 ++-- .../r2dbc/cleanup/scaladsl/EventSourcedCleanup.scala | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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