diff --git a/.scalafmt.conf b/.scalafmt.conf index 26d5de1d..70121936 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version=3.0.7 +version=3.0.8 style = defaultWithAlign maxColumn = 100 diff --git a/core/src/main/scala/higherkindness/mu/rpc/srcgen/openapi/OpenApiSrcGenerator.scala b/core/src/main/scala/higherkindness/mu/rpc/srcgen/openapi/OpenApiSrcGenerator.scala index a78ee5a9..67969c74 100644 --- a/core/src/main/scala/higherkindness/mu/rpc/srcgen/openapi/OpenApiSrcGenerator.scala +++ b/core/src/main/scala/higherkindness/mu/rpc/srcgen/openapi/OpenApiSrcGenerator.scala @@ -82,7 +82,7 @@ object OpenApiSrcGenerator { file.getParentFile.toPath.asScala .splitAt( resourcesBasePath.iterator().asScala.size + 1 - ) //we need to add one because it is changing the resource path, adding open api + ) // we need to add one because it is changing the resource path, adding open api val path: Path = Paths.get(paths.map(_.toString()).mkString("/")) val pkg = packageName(path) pathFrom(path, file).toString ->