Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scalafmt-core to 3.7.17 #133

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.7.17
b54c875b337047627bc0e25e4ea162bcf153d3ee
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 3.5.9
version = 3.7.17
maxColumn = 140
runner.dialect = scala3
2 changes: 1 addition & 1 deletion zio/src/main/scala/saft/Persistence.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package saft

import zio.UIO

/** Provides persistence for the persistence part of [[ServerState]]: `currentTerm`, `votedFor` and `log`. */
/** Provides persistence for the persistence part of [[ServerState]]: `currentTerm`, `votedFor` and `log`. */
trait Persistence:
/** Persists the state. The [[oldState]] can be used to compute a delta of changes that need to be saved. */
def apply(oldState: ServerState, newState: ServerState): UIO[Unit]
Expand Down
Loading