Skip to content

Commit 35320df

Browse files
committed
3.5 Typos
1 parent 13a2e2b commit 35320df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Part 3 - Taming the sequence/5. Time-shifted sequences.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ When buffering based on the desired buffer size, you can also defined how many e
106106
As we can see in the marble diagram, we start a new buffer every 3 values but the buffer is limited to 2 values. Therefore, every third element is left out. You can also start the new buffer before the previous buffer closes.
107107
* When `count` > `skip`, the buffers overlap
108108
* When `count` < `skip`, elements are left out
109-
* The case of `count` = `skip` is equivalent to the case we in the previous subchapter.
109+
* The case of `count` = `skip` is equivalent to the simpler case we saw in the previous subchapter.
110110

111111
Here's an example in code, where the buffers overlap
112112

@@ -132,7 +132,7 @@ We can do a very similar thing for the variant that buffers based on a timespan.
132132
Once again, this allows you either to make your buffers overlap or leave out elements.
133133
* When `timespan` > `timeshift`, the buffers overlap
134134
* When `timespan` < `timeshift`, elements are left out
135-
* The case of `timespan` = `timeshift` is equivalent to the case we in the previous subchapter.
135+
* The case of `timespan` = `timeshift` is equivalent to the simpler case we saw in the previous subchapter.
136136

137137
In the next example we will create a new buffer every 200ms an have each last 350ms. That means that buffer overlap by 150ms.
138138

0 commit comments

Comments
 (0)