From 5b256cfc3cc9e55d5e24bb9bcfd48d2d8190684b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 19 Feb 2022 05:21:48 +0100 Subject: [PATCH 1/2] Update scalafmt-core to 3.4.3 --- .scalafmt.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 23a6e5474..1fb823459 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "3.2.2" +version = "3.4.3" runner.dialect = scala213 maxColumn = 100 project.git = true From f7b1ed06789e88970e83eab248f63168706192ed Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 19 Feb 2022 05:21:59 +0100 Subject: [PATCH 2/2] Reformat with scalafmt 3.4.3 --- cli/src/main/scala/mdoc/Variable.scala | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cli/src/main/scala/mdoc/Variable.scala b/cli/src/main/scala/mdoc/Variable.scala index 524709e15..1b00b5550 100644 --- a/cli/src/main/scala/mdoc/Variable.scala +++ b/cli/src/main/scala/mdoc/Variable.scala @@ -32,22 +32,22 @@ import scala.meta.inputs.Position * is 1 and for `val (a, b) = ...` the total number is 2. * @param indexOfStatementInCodeFence * the index of the enclosing statement within the enclosing code fence. For example, in - * {{{ + * {{{ * ```scala * val x = 1 * val y = 2 * ``` - * }}} - * The variable `y` has index 1 and variable `x` has index 0. + * }}} + * The variable `y` has index 1 and variable `x` has index 0. * @param totalStatementsInCodeFence * the total number of statement in the enclosing code fence. For example, the total number is 2 * for the code fence below. - * {{{ + * {{{ * ```scala * val x = 1 * val y = 2 * ``` - * }}} + * }}} */ final class Variable private[mdoc] ( val name: String,