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.8.5 #635

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
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Scala Steward: Reformat with scalafmt 3.7.5
f09f531b864e0dec446f423247b63ecda0235f0a

# Scala Steward: Reformat with scalafmt 3.8.5
4cb2b8b4478bed427b3b7cc9effbe4065cbad617
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.3"
version = "3.8.5"

runner.dialect = scala213

Expand Down
2 changes: 0 additions & 2 deletions core/shared/src/main/scala/cats/parse/Parser.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,8 @@ import scala.collection.immutable.NumericRange
*
* - Success: The parser consumes zero-or-more characters of input and successfully extracts a
* value. The input offset will be moved forward by the number of characters consumed.
*
* - Epsilon failure: The parser fails to extract a value without consuming any characters of
* input. The input offset will not be changed.
*
* - Arresting failure: The parser fails to extract a value but does consume one-or-more
* characters of input. The input offset will be moved forward by the number of characters
* consumed and all parsing will stop (unless a higher-level parser backtracks).
Expand Down
Loading