From 7e35eb77292fe6464889ddc8329c6a64136f969d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 23 Feb 2018 23:29:01 +0000 Subject: spelling fixes Detected using the `codespell` tool. Also contains one URL protocol upgrade. Closes https://github.com/curl/curl/pull/2334 --- docs/examples/ftpupload.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/examples') diff --git a/docs/examples/ftpupload.c b/docs/examples/ftpupload.c index 5fc41ef81..bd77bb1f3 100644 --- a/docs/examples/ftpupload.c +++ b/docs/examples/ftpupload.c @@ -77,7 +77,7 @@ int main(void) /* get the file size of the local file */ if(stat(LOCAL_FILE, &file_info)) { - printf("Couldnt open '%s': %s\n", LOCAL_FILE, strerror(errno)); + printf("Couldn't open '%s': %s\n", LOCAL_FILE, strerror(errno)); return 1; } fsize = (curl_off_t)file_info.st_size; -- cgit v1.2.3