You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/standard/io/pipelines.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,13 +49,13 @@ To fix the preceding problems, the following changes are required:
49
49
50
50
* Buffer the incoming data until a new line is found.
51
51
* Parse all the lines returned in the buffer.
52
-
* It's possible that the line is bigger than 1 KB (1024 bytes). The code needs to resize the input buffer a complete line is found.
52
+
* It's possible that the line is bigger than 1 KB (1024 bytes). The code needs to resize the input buffer until the delimiter is found in order to fit the complete line inside the buffer.
53
53
54
54
* If the buffer is resized, more buffer copies are made as longer lines appear in the input.
55
55
* To reduce wasted space, compact the buffer used for reading lines.
56
56
57
57
* Consider using buffer pooling to avoid allocating memory repeatedly.
58
-
* The following code address some of these problems:
58
+
* The following code addresses some of these problems:
0 commit comments