Skip to content

Commit facef58

Browse files
authored
Make build.sbt more beginner friendly
With the added comma, it does not matter whether a dependency is added before or after the existing line. This can trip up beginners, as the error message is not the best if they forget: "string literal found, but ) expected"
1 parent 66220e1 commit facef58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/g8/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ lazy val root = project
88

99
scalaVersion := scala3Version,
1010

11-
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test
11+
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test,
1212
)

0 commit comments

Comments
 (0)