Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix small spelling errors #1264

Merged
merged 3 commits into from
Jul 5, 2017
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public abstract class HttpHeader {
public abstract String lowercaseName();

/**
* Returns true iff nameInLowerCase.equals(lowercaseName()).
* Returns true exactly when nameInLowerCase.equals(lowercaseName()).
*/
public abstract boolean is(String nameInLowerCase);

Expand All @@ -36,12 +36,12 @@ public abstract class HttpHeader {
public abstract boolean isNot(String nameInLowerCase);

/**
* Returns true iff the header is to be rendered in requests.
* Returns true exactly when the header is to be rendered in requests.
*/
public abstract boolean renderInRequests();

/**
* Returns true iff the header is to be rendered in responses.
* Returns true exactly when the header is to be rendered in responses.
*/
public abstract boolean renderInResponses();
}