aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/fopen.c
diff options
context:
space:
mode:
authorklemens <ka7@github.com>2017-03-26 17:02:22 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-03-26 23:56:23 +0200
commitf7df67cff0a756eefc8daea36e6468df694a43d0 (patch)
tree5c0f0e6547531e4681d1bf5ec88c24db322fe96f /docs/examples/fopen.c
parent8e65877870c1fac920b65219adec720df810aab9 (diff)
spelling fixes
Closes #1356
Diffstat (limited to 'docs/examples/fopen.c')
-rw-r--r--docs/examples/fopen.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/examples/fopen.c b/docs/examples/fopen.c
index 7435264a7..1822b3a09 100644
--- a/docs/examples/fopen.c
+++ b/docs/examples/fopen.c
@@ -10,7 +10,7 @@
* instead of (only) local files. Local files (ie those that can be directly
* fopened) will drop back to using the underlying clib implementations
*
- * See the main() function at the bottom that shows an app that retrives from a
+ * See the main() function at the bottom that shows an app that retrieves from a
* specified url using fgets() and fread() and saves as two output files.
*
* Copyright (c) 2003 Simtec Electronics
@@ -345,7 +345,7 @@ size_t url_fread(void *ptr, size_t size, size_t nmemb, URL_FILE *file)
fill_buffer(file, want);
- /* check if theres data in the buffer - if not fill_buffer()
+ /* check if there's data in the buffer - if not fill_buffer()
* either errored or EOF */
if(!file->buffer_pos)
return 0;
@@ -384,7 +384,7 @@ char *url_fgets(char *ptr, size_t size, URL_FILE *file)
case CFTYPE_CURL:
fill_buffer(file, want);
- /* check if theres data in the buffer - if not fill either errored or
+ /* check if there's data in the buffer - if not fill either errored or
* EOF */
if(!file->buffer_pos)
return NULL;
@@ -404,7 +404,7 @@ char *url_fgets(char *ptr, size_t size, URL_FILE *file)
/* xfer data to caller */
memcpy(ptr, file->buffer, want);
- ptr[want]=0;/* allways null terminate */
+ ptr[want]=0;/* always null terminate */
use_buffer(file, want);
@@ -450,7 +450,7 @@ void url_rewind(URL_FILE *file)
#define FREADFILE "fread.test"
#define REWINDFILE "rewind.test"
-/* Small main program to retrive from a url using fgets and fread saving the
+/* Small main program to retrieve from a url using fgets and fread saving the
* output to two test files (note the fgets method will corrupt binary files if
* they contain 0 chars */
int main(int argc, char *argv[])