Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
massimosiani committed Sep 10, 2023
1 parent db1ec77 commit 48cba1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ lazy val natchezDoobieLegacy = projectMatrix
libraryDependencies ++= Seq(
"org.tpolecat" %% "natchez-core" % natchezVersion,
"org.tpolecat" %% "doobie-core" % doobieLegacyVersion,
"org.tpolecat" %% "doobie-h2" % doobieVersion % Test
"org.tpolecat" %% "doobie-h2" % doobieLegacyVersion % Test
)
)
.dependsOn(core)
Expand Down Expand Up @@ -275,7 +275,6 @@ lazy val docs = project
ce3Utils.jvm(scala213Version),
datadogMetrics.jvm(scala213Version),
natchezDoobie.jvm(scala213Version),
natchezDoobieLegacy.jvm(scala213Version),
datadogStable213,
natchezCombine.jvm(scala213Version),
natchezSlf4j.jvm(scala213Version),
Expand Down
3 changes: 2 additions & 1 deletion docs/docs/docs/natchez-doobie.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ object NatchezDoobie extends IOApp {
driver = "org.postgresql.Driver",
url = "jdbc:postgresql:example",
user = "postgres",
pass = "password" // of course don't hard code these details in your applications!
password = "password", // of course don't hard code these details in your applications!
logHandler = None,
)
)

Expand Down

0 comments on commit 48cba1e

Please sign in to comment.