Fix typo in Http2HeadersFrame javadocs (#10756)

Motivation:
`Http2HeadersFrame#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:28:34 +05:30 committed by GitHub
parent d62384b227
commit 87c46113d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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