1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

net: fix typo give => given (#17955)

This commit is contained in:
SolarWolf-Code 2023-04-14 02:15:16 -06:00 committed by GitHub
parent e0656ad1b1
commit 7981d2854a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 { pub fn get(url string) !Response {
return fetch(method: .get, url: url) return fetch(method: .get, url: url)
} }