Skip to content

Commit ef19e0b

Browse files
committed
.
1 parent dc9851c commit ef19e0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ dbClient.transaction{ db =>
4141
// Finding the 5-8th largest cities by population
4242
val fewLargestCities = db.run(
4343
City.select
44-
.sortBy(_.population).desc
45-
.drop(5).take(3)
46-
.map(c => (c.name, c.population))
44+
.sortBy(_.population).desc
45+
.drop(5).take(3)
46+
.map(c => (c.name, c.population))
4747
)
4848
// SELECT city0.name AS res__0, city0.population AS res__1
4949
// FROM city city0 ORDER BY res__1 DESC LIMIT ? OFFSET ?

0 commit comments

Comments
 (0)