Skip to content

Commit

Permalink
Merge pull request #626 from scala-steward/update/scalafmt-core-3.4.3
Browse files Browse the repository at this point in the history
Update scalafmt-core to 3.4.3
  • Loading branch information
tgodzik authored Feb 19, 2022
2 parents 955acdb + f7b1ed0 commit 64f3a3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.2.2"
version = "3.4.3"
runner.dialect = scala213
maxColumn = 100
project.git = true
Expand Down
10 changes: 5 additions & 5 deletions cli/src/main/scala/mdoc/Variable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 64f3a3e

Please sign in to comment.