diff --git a/.scalafmt.conf b/.scalafmt.conf index d2c6dd9c..bf13f4d7 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "3.3.1" +version = "3.3.2" runner.dialect = scala213 style = defaultWithAlign maxColumn = 120 diff --git a/app/nodejs-v16/src/main/scala/io/scalajs/nodejs/fs/Stats.scala b/app/nodejs-v16/src/main/scala/io/scalajs/nodejs/fs/Stats.scala index 3921093e..efe7051c 100644 --- a/app/nodejs-v16/src/main/scala/io/scalajs/nodejs/fs/Stats.scala +++ b/app/nodejs-v16/src/main/scala/io/scalajs/nodejs/fs/Stats.scala @@ -84,7 +84,7 @@ trait IStats[TInt, TFloat] extends js.Object { /** fs.Stats (Stat Time Values) - Objects returned from fs.stat(), fs.lstat() and fs.fstat() and their synchronous * counterparts are of this type. * @example - * {{{ + * {{{ * Stats { * dev: 2114, * ino: 48064969, @@ -105,7 +105,7 @@ trait IStats[TInt, TFloat] extends js.Object { * ctime: Mon, 10 Oct 2011 23:24:11 GMT, * birthtime: Mon, 10 Oct 2011 23:24:11 GMT * } - * }}} + * }}} * @since 0.1.21 */ @js.native @@ -115,7 +115,7 @@ trait Stats extends IStats[Int, Double] * counterparts are of this type. * * @example - * {{{ + * {{{ * BigIntStats { * dev: 2114n, * ino: 48064969n, @@ -140,7 +140,7 @@ trait Stats extends IStats[Int, Double] * ctime: Mon, 10 Oct 2011 23:24:11 GMT, * birthtime: Mon, 10 Oct 2011 23:24:11 GMT * } - * }}} + * }}} * @since 0.1.21 */ @js.native