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:
Aayush Atharva 2020-10-30 20:29:31 +05:30 committed by Norman Maurer
parent 1910528b30
commit 3aef41922b

View File

@ -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();