Fix typo in Http2FrameCodec#write(...) comment

Motivation:
`Http2FrameCodec#write(...)` has typo in comment.
`// In the event of manual SETTINGS ACK is is assumed the encoder will apply the earliest received but not`.
The typo is `is is`. However, it should be `it is`.

Modification:
Changed `is is` to `it is`.

Result:
Correct comment without typos.
This commit is contained in:
Aayush Atharva 2020-11-02 13:19:13 +05:30 committed by Norman Maurer
parent 3aef41922b
commit 7d9b009cdf

View File

@ -319,7 +319,7 @@ public class Http2FrameCodec extends Http2ConnectionHandler {
} else if (msg instanceof Http2SettingsFrame) { } else if (msg instanceof Http2SettingsFrame) {
encoder().writeSettings(ctx, ((Http2SettingsFrame) msg).settings(), promise); encoder().writeSettings(ctx, ((Http2SettingsFrame) msg).settings(), promise);
} else if (msg instanceof Http2SettingsAckFrame) { } else if (msg instanceof Http2SettingsAckFrame) {
// In the event of manual SETTINGS ACK is is assumed the encoder will apply the earliest received but not // In the event of manual SETTINGS ACK, it is assumed the encoder will apply the earliest received but not
// yet ACKed settings. // yet ACKed settings.
encoder().writeSettingsAck(ctx, promise); encoder().writeSettingsAck(ctx, promise);
} else if (msg instanceof Http2GoAwayFrame) { } else if (msg instanceof Http2GoAwayFrame) {