Fix grammatical error in JavaDoc of setResponse method in MockClientHttpRequest

This pull request fixes a grammatical mistake in the JavaDoc of the setResponse method in MockClientHttpRequest.

- Original: "the this request"
- Changed to: "this request"

This change improves the clarity and quality of the documentation.

Signed-off-by: DongNyoung Lee <121621378+Dongnyoung@users.noreply.github.com>
This commit is contained in:
DongNyoung Lee 2025-05-06 20:12:36 +09:00 committed by GitHub
parent c74f897fac
commit 05c3666fad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ public class MockClientHttpRequest extends MockHttpOutputMessage implements Clie
/**
* Set the {@link ClientHttpResponse} to be used as the result of executing
* the this request.
* this request.
* @see #execute()
*/
public void setResponse(ClientHttpResponse clientHttpResponse) {