Skip to content

Commit 81c7928

Browse files
Apply TR suggestions
Co-authored-by: Ian <[email protected]>
1 parent fff8b85 commit 81c7928

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

flush-print/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ At some point the buffer gets filled up so much that it needs to flush during th
5555

5656
Finally, you need to subtract from the current value of `SLIGHTLY_TOO_LARGE_FOR_BUFFER` because we assume that the buffer flushes continuously when it gets full, which means that whatever is in the buffer when the script is done should represent a full buffer.
5757

58-
If you have better and more precise ways to calculate the buffer size, or have spotted a logical or computational mistake in these calculations, then please let us know!
59-
6058
## About the Author
6159

6260
Martin Breuss - Email: [email protected]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from time import sleep
22

33
for second in range(3, 0, -1):
4-
print(second, "", sep="\n", end="")
4+
print(second, "s", sep="\n", end="")
55
sleep(1)
66
print("Go!")

0 commit comments

Comments
 (0)