Updated Improving .sbt format (take 2) (markdown)

Mark Harrah 2013-10-09 10:33:45 -07:00
parent 14e32733fc
commit 9068be9087
1 changed files with 1 additions and 1 deletions

@ -43,7 +43,7 @@ def helperMethod(in: Input1): Unit = {
}
```
While this is a valid scala expression, it is not expressible in the .sbt format, because of the blank lines. While sbt 0.13 provides a helpful error message, the user is required to make one of two changes:
While this is a valid scala method definition, it is not expressible in the .sbt format, because of the blank lines. While sbt 0.13 provides a helpful error message, the user is required to make one of two changes:
1. remove blank lines
2. replace blank lines with empty comments.