From facef580469971dc10e4b0390651d025d28bd7b4 Mon Sep 17 00:00:00 2001 From: Quentin Bernet Date: Tue, 2 Apr 2024 13:28:00 +0200 Subject: [PATCH] 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" --- src/main/g8/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/g8/build.sbt b/src/main/g8/build.sbt index 041288b..dcbf006 100644 --- a/src/main/g8/build.sbt +++ b/src/main/g8/build.sbt @@ -8,5 +8,5 @@ lazy val root = project scalaVersion := scala3Version, - libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test + libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test, )