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 GitHub
parent 87c46113d1
commit 1efc5f81e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ public interface Http2DataFrame extends Http2StreamFrame, ByteBufHolder {
int initialFlowControlledBytes(); int initialFlowControlledBytes();
/** /**
* Returns {@code true} if the END_STREAM flag ist set. * Returns {@code true} if the END_STREAM flag is set.
*/ */
boolean isEndStream(); boolean isEndStream();