Skip to content

Commit

Permalink
Updated typos, fixed issue #1687 (#1688)
Browse files Browse the repository at this point in the history
Updated typos, fixed issue #1687
  • Loading branch information
avikBh200 committed Jun 16, 2023
1 parent bf2e927 commit a1ccae1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ public interface RequestSenderOptions<R extends ResponseOptions<R>> {
*
* @param method The HTTP method to use
* @param uri The uri to send the request to.
* @return The response of the GET request.
* @return The response of the request.
*/
R request(Method method, URI uri);

Expand All @@ -383,7 +383,7 @@ public interface RequestSenderOptions<R extends ResponseOptions<R>> {
*
* @param method The HTTP method to use
* @param url The url to send the request to.
* @return The response of the GET request.
* @return The response of the request.
*/
R request(Method method, URL url);

Expand All @@ -392,7 +392,7 @@ public interface RequestSenderOptions<R extends ResponseOptions<R>> {
*
* @param method The HTTP method to use
* @param uri The uri to send the request to.
* @return The response of the GET request.
* @return The response of the request.
*/
R request(String method, URI uri);

Expand All @@ -401,7 +401,7 @@ public interface RequestSenderOptions<R extends ResponseOptions<R>> {
*
* @param method The HTTP method to use
* @param url The url to send the request to.
* @return The response of the GET request.
* @return The response of the request.
*/
R request(String method, URL url);
}

0 comments on commit a1ccae1

Please sign in to comment.