Skip to content

Commit dc9851c

Browse files
committed
unused
1 parent 4db9d42 commit dc9851c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/developer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
* Fix all auto-generating and auto-formatting issues at once via
1515
```
16-
./mill -i -w mill.scalalib.scalafmt.ScalafmtModule/reformatAll __.sources + "scalasql[2.13.12].test" + generateTutorial + generateReference
16+
./mill -i -w __.fix + mill.scalalib.scalafmt.ScalafmtModule/reformatAll __.sources + "scalasql[2.13.12].test" + generateTutorial + generateReference
1717
```
1818

1919
* You can run ad-hoc benchmarks using any test case via the `SCALASQL_RUN_BENCHMARK`

docs/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,7 @@ is rolled back and all changes are undoned (as seen below)
12491249
```scala
12501250
dbClient.transaction { implicit db =>
12511251
try {
1252-
db.savepoint { implicit sp =>
1252+
db.savepoint { _ =>
12531253
db.run(City.delete(_.countryCode === "SGP"))
12541254
12551255
db.run(City.select.filter(_.countryCode === "SGP")) ==> Seq()

0 commit comments

Comments
 (0)