Skip to content

Commit

Permalink
trailing ws
Browse files Browse the repository at this point in the history
  • Loading branch information
olix0r committed Jul 24, 2017
1 parent 9a95fc5 commit a4cf406
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/proto/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ impl<T, P, B> Stream for Connection<T, P, B>
Async::NotReady => {
// Receiving new frames may depend on ensuring that the write buffer
// is clear (e.g. if window updates need to be sent), so `poll_complete`
// is called here.
// is called here.
try_ready!(self.poll_complete());

// If the write buffer is cleared, attempt to poll the underlying
Expand Down
2 changes: 1 addition & 1 deletion src/proto/flow_control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ impl<T, U> ReadySink for FlowControl<T>
/// > flow-control window and MUST NOT send new flow-controlled frames until it
/// > receives WINDOW_UPDATE frames that cause the flow-control window to become
/// > positive.
impl<T> ApplySettings for FlowControl<T>
impl<T> ApplySettings for FlowControl<T>
where T: ApplySettings,
T: ControlStreams
{
Expand Down
2 changes: 1 addition & 1 deletion src/proto/stream_recv_open.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ impl<T, U> Stream for StreamRecvOpen<T>

fn poll(&mut self) -> Poll<Option<T::Item>, T::Error> {
// Since there's only one slot for pending refused streams, it must be cleared
// before polling a frame from the transport.
// before polling a frame from the transport.
try_ready!(self.send_pending_refuse());

trace!("poll");
Expand Down

0 comments on commit a4cf406

Please sign in to comment.