Results 6 comments of QP

A simple solution which depends on only Monad and MonadError ```scala def listAllOrgRepos[F[_]](repos: Repositories[F], orgName: String)(implicit monadError: MonadError[F, Throwable] ): F[List[Repository]] = mergeGhPages(page => repos .listOrgRepos(orgName, pagination = Some(Pagination(page, 100)))...

Hi @BenediktKersjes I get syntax error on the first line. Required type: Future Provided: Future I guess you wanted to write this: ```java Future f = Future.of(() -> { int...

I noticed the following: on both spring and and vanilla InterruptedException is catched @danieldietrich I created a one class spring project for you which shows the error [spring_boot_reproduce_vavr_bug.zip](https://github.com/vavr-io/vavr/files/5110152/spring_boot_reproduce_vavr_bug.zip)

@charvakcpatel007 add the missed space to this branch so it can be merged.

@jkaldon @dmvk @stephenh @wangxufire I have forked https://github.com/google/google-java-format/pull/163 and merged master into it. https://github.com/theqp/google-java-format Examples how it handles lambdas currently: https://github.com/theqp/google-java-format/blob/master/core/src/test/resources/com/google/googlejavaformat/java/testdata/B20128760.output https://github.com/theqp/google-java-format/blob/master/core/src/test/resources/com/google/googlejavaformat/java/testdata/B21305044.output https://github.com/theqp/google-java-format/blob/459401334186a6a5cf9d298f456f4ddbbdc5be41/core/src/test/resources/com/google/googlejavaformat/java/testdata/B22873322.output https://github.com/theqp/google-java-format/blob/459401334186a6a5cf9d298f456f4ddbbdc5be41/core/src/test/resources/com/google/googlejavaformat/java/testdata/B33358723.output Note that it is not perfect...

I found this, I'm sharing this so maybe someone will find it useful https://august.nagro.us/scala-for-loop.html