Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit aa459b9

Browse files
committed
Fixup bad docstring.
1 parent 2ca177c commit aa459b9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

hyper/http20/window.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,11 @@ class FlowControlManager(BaseFlowControlManager):
133133
134134
This algorithm will become more complicated over time. In the current form,
135135
the algorithm is very simple:
136-
- When the flow control window gets less than 1/4 of the maximum size,
137-
increment back to the maximum.
138-
- Otherwise, if the flow control window gets to less than 1kB, increment
139-
back to the maximum.
136+
137+
- When the flow control window gets less than 1/4 of the maximum size,
138+
increment back to the maximum.
139+
- Otherwise, if the flow control window gets to less than 1kB, increment
140+
back to the maximum.
140141
"""
141142
def increase_window_size(self, frame_size):
142143
future_window_size = self.window_size - frame_size

0 commit comments

Comments
 (0)