Fix doc typo (#29326)

This commit is contained in:
jeremie-seguin 2020-06-30 10:52:26 +02:00 committed by GitHub
parent e8e43be3fe
commit 6130b33e08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,7 @@ public class PartitionDocExample {
.to(Sink.ignore()); .to(Sink.ignore());
Sink<Integer, NotUsed> odd = Sink<Integer, NotUsed> odd =
Flow.of(Integer.class) Flow.of(Integer.class)
.log("even") .log("odd")
.withAttributes(Attributes.createLogLevels(Attributes.logLevelInfo())) .withAttributes(Attributes.createLogLevels(Attributes.logLevelInfo()))
.to(Sink.ignore()); .to(Sink.ignore());