diff --git a/docs/streams/upgrade-guide.html b/docs/streams/upgrade-guide.html index 8480e5e1aca..e4745d0d486 100644 --- a/docs/streams/upgrade-guide.html +++ b/docs/streams/upgrade-guide.html @@ -127,7 +127,7 @@
-        As of 2.6.0 Kafka Streams deprecates  
-        We add a new KStream.through() if favor of the new KStream.repartition() operator
+        As of 2.6.0 Kafka Streams deprecates KStream.through() in favor of the new KStream.repartition() operator
         (as per KIP-221).
         KStream.repartition() is similar to KStream.through(), however Kafka Streams will manage the topic for you.
         If you need to write into and read back from a topic that you mange, you can fall back to use KStream.to() in combination with StreamsBuilder#stream().
@@ -147,7 +147,7 @@
 
     Streams API changes in 2.5.0
     cogroup() operator (via KIP-150>)
+        We add a new cogroup() operator (via KIP-150)
         that allows to aggregate multiple streams in a single operation.
         Cogrouped streams can also be windowed before they are aggregated.
         Please refer to the developer guide for more details.