Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-git committed Oct 31, 2024
1 parent 0e036ed commit 4380da6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ private[journal] object Batch_4_1_2 {
private val appends: Option[Appends] = None,
private val delete: Option[Delete] = None,
) {
// Expects records to be provided in revered order, e.g. youngest first
// Expects records to be provided in reversed order, e.g., youngest first
private def handle: ActionRecord[Action] => State = {
case _ if this.purge.nonEmpty => // ignore all actions before `Purge`
this
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private[journal] object Batch {
private val appends: Option[Appends] = None,
private val delete: Option[Delete] = None,
) {
// Expects records to be provided in revered order, e.g. youngest first
// Expects records to be provided in reversed order, e.g., youngest first
private def handle: ActionRecord[Action] => State = {
case _ if this.purge.nonEmpty => // ignore all actions before `Purge`
this
Expand Down

0 comments on commit 4380da6

Please sign in to comment.