From f540e43b9db8a507e1afa83a66b059aff7c965f2 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 27 Feb 2024 12:29:27 +0100 Subject: examples: use present tense in comments remove "will" and some other word fixes Closes #13003 --- docs/examples/resolve.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/examples/resolve.c') diff --git a/docs/examples/resolve.c b/docs/examples/resolve.c index a16f45954..6514e93d8 100644 --- a/docs/examples/resolve.c +++ b/docs/examples/resolve.c @@ -22,7 +22,7 @@ * ***************************************************************************/ /* - * Use CURLOPT_RESOLVE to feed custom IP addresses for given host name + port + * Use CURLOPT_RESOLVE to feed custom IP addresses for given hostname + port * number combinations. * */ @@ -35,9 +35,9 @@ int main(void) CURLcode res = CURLE_OK; /* Each single name resolve string should be written using the format - HOST:PORT:ADDRESS where HOST is the name libcurl will try to resolve, - PORT is the port number of the service where libcurl wants to connect to - the HOST and ADDRESS is the numerical IP address + HOST:PORT:ADDRESS where HOST is the name libcurl tries to resolve, PORT + is the port number of the service where libcurl wants to connect to the + HOST and ADDRESS is the numerical IP address */ struct curl_slist *host = curl_slist_append(NULL, "example.com:443:127.0.0.1"); -- cgit v1.2.3