diff --git a/src/event.rs b/src/event.rs
index 9b993d3a73c0bfebf372d873e6ab2e514daae37b..9d338c698c3801ca78f3a974914b1a63579eb885 100644
--- a/src/event.rs
+++ b/src/event.rs
@@ -192,8 +192,8 @@ where I: Iterator<Item = Result<u8, Error>>
                             let mut buf = Vec::new();
                             buf.push(c);
                             let mut c = iter.next().unwrap().unwrap();
-                            // The final byte of a CSI sequence can be in the range 64-126
-                            // So let's keep reading anything else.
+                            // The final byte of a CSI sequence can be in the range 64-126, so
+                            // let's keep reading anything else.
                             while c < 64 || c > 126 {
                                 buf.push(c);
                                 c = iter.next().unwrap().unwrap();