Skip to content

Commit 400deb3

Browse files
committed
scala fmt, readme fix
1 parent d676edd commit 400deb3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ sbt:root> projects
7878
Before submitting a change for review, it's worth running some extra checks that will be triggered in Continuous Integration:
7979

8080
```sbt
81-
sbt:root> fmtCheck; test; doc; mimaReportBinaryIssues; docs/mdoc; microsite/makeMicrosite
81+
sbt:root> scalafmtCheck; test; doc; mimaReportBinaryIssues; docs/mdoc; microsite/makeMicrosite
8282
```
8383

8484
That will check the formatting, run all tests on the supported platforms, report any binary compatibility issues (as detected by [MiMa][mima]) and build the site.

core/shared/src/test/scala/fs2/StreamCombinatorsSuite.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,9 @@ class StreamCombinatorsSuite extends Fs2Suite {
847847
downstream.compile.lastOrError.intercept[SevenNotAllowed.type]
848848
}
849849

850-
test("upstream interruption causes immediate downstream termination with all elements being emitted") {
850+
test(
851+
"upstream interruption causes immediate downstream termination with all elements being emitted"
852+
) {
851853

852854
val sourceTimeout = 5.5.seconds
853855
val downstreamTimeout = sourceTimeout + 2.seconds

0 commit comments

Comments
 (0)