Fix typo in Http2DataFrame javadocs (#10755)
Motivation: `Http2DataFrame#isEndStream()` JavaDoc says `Returns {@code true} if the END_STREAM flag ist set.`. The typo is `ist` word. However, it should be `is`. Modification: Changed `ist` to `is`. Result: Better JavaDoc by fixing the typo.
This commit is contained in:
parent
87c46113d1
commit
1efc5f81e2
@ -43,7 +43,7 @@ public interface Http2DataFrame extends Http2StreamFrame, ByteBufHolder {
|
||||
int initialFlowControlledBytes();
|
||||
|
||||
/**
|
||||
* Returns {@code true} if the END_STREAM flag ist set.
|
||||
* Returns {@code true} if the END_STREAM flag is set.
|
||||
*/
|
||||
boolean isEndStream();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user