We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98c71d1 commit 0fac073Copy full SHA for 0fac073
1 file changed
README.md
@@ -26,7 +26,7 @@ Either<String, BigInteger> possiblyPrime = Stream.generate(() ->
26
.orElseGet(() -> Either.left("no such value"));
27
````
28
29
-Declaring the result type before the `map` operation is necessary, due to limitations of Java's typechecker.
+Repeating the result type in the `map` operation is necessary, due to a limitation of Java's typechecker.
30
31
### Working with Either
32
0 commit comments