Fix typos in AbstractClientHttpRequest

Closes gh-24623
This commit is contained in:
Adrian Cole 2020-03-02 20:36:47 +08:00 committed by GitHub
parent 8a7bb49436
commit 7f5395a216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -137,13 +137,13 @@ public abstract class AbstractClientHttpRequest implements ClientHttpRequest {
/**
* Apply header changes from {@link #getHeaders()} to the underlying response.
* Apply header changes from {@link #getHeaders()} to the underlying request.
* This method is called once only.
*/
protected abstract void applyHeaders();
/**
* Add cookies from {@link #getHeaders()} to the underlying response.
* Add cookies from {@link #getHeaders()} to the underlying request.
* This method is called once only.
*/
protected abstract void applyCookies();