diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs new file mode 100644 index 00000000..c58b2e0f --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,2 @@ +# Scala Steward: Reformat with scalafmt 3.8.4 +7e13282fcc46869e78cacf0c1610411ada5e078a diff --git a/.scalafmt.conf b/.scalafmt.conf index 2b3dcf24..afc0a1e1 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version=3.8.2 +version=3.8.4 runner.dialect = Scala213Source3 align.openParenCallSite = true align.openParenDefnSite = true diff --git a/util/shared/src/main/scala/jawn/util/Slice.scala b/util/shared/src/main/scala/jawn/util/Slice.scala index f7d3d677..a5dd3085 100644 --- a/util/shared/src/main/scala/jawn/util/Slice.scala +++ b/util/shared/src/main/scala/jawn/util/Slice.scala @@ -28,7 +28,6 @@ package org.typelevel.jawn.util * * - Slice(s) wraps a string, ensuring that future operations (e.g. subSequence) will construct slices instead of * strings. - * * - Slice(s, start, limit) is the default, and ensures that: * * 1. start >= 0 2. limit >= start 3. limit <= s.length