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:
parent
d62384b227
commit
87c46113d1
@ -34,7 +34,7 @@ public interface Http2HeadersFrame extends Http2StreamFrame {
|
|||||||
int padding();
|
int padding();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns {@code true} if the END_STREAM flag ist set.
|
* Returns {@code true} if the END_STREAM flag is set.
|
||||||
*/
|
*/
|
||||||
boolean isEndStream();
|
boolean isEndStream();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user