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:
parent
e0656ad1b1
commit
7981d2854a
@ -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)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user