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:
parent
1efc5f81e2
commit
0b0b446d38
@ -332,7 +332,7 @@ public class Http2FrameCodec extends Http2ConnectionHandler {
|
||||
} else if (msg instanceof Http2SettingsFrame) {
|
||||
encoder().writeSettings(ctx, ((Http2SettingsFrame) msg).settings(), promise);
|
||||
} 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.
|
||||
encoder().writeSettingsAck(ctx, promise);
|
||||
} else if (msg instanceof Http2GoAwayFrame) {
|
||||
|
Loading…
Reference in New Issue
Block a user