Trailing comments are getting dropped
nafg opened this issue · comments
Naftoli Gugenheim commented
I'm trying to port Slick's documentation to mdoc and the following snippet loses the last line.
val limit = 10.0
// Your query could look like this:
( for( c <- coffees; if c.price < limit ) yield c.name ).result
// Equivalent SQL: select COF_NAME from COFFEES where PRICE < 10.0