diff --git a/vlib/net/http/http.v b/vlib/net/http/http.v index b69c9b35e5..77bfe16a5c 100644 --- a/vlib/net/http/http.v +++ b/vlib/net/http/http.v @@ -48,7 +48,7 @@ pub fn new_request(method Method, url_ string, data string) Request { } } -// get sends a GET HTTP request to the give `url`. +// get sends a GET HTTP request to the given `url`. pub fn get(url string) !Response { return fetch(method: .get, url: url) }