]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
docs: fix typo (staring -> starting)
authorFlorian Friedrich <ffried@me.com>
Tue, 2 Sep 2025 07:44:07 +0000 (09:44 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 2 Sep 2025 08:11:51 +0000 (10:11 +0200)
Closes #18450

docs/cmdline-opts/retry-delay.md
docs/cmdline-opts/retry-max-time.md
docs/examples/websocket-updown.c
docs/libcurl/curl_ws_start_frame.md

index 25ab1a660be8b02cd2b987108175bb696eb4f863..dbc78e00d854a3e5923a5add2ffdef96abbe9362 100644 (file)
@@ -23,6 +23,6 @@ used. Setting this delay to zero makes curl use the default backoff time.
 
 By default, curl uses an exponentially increasing timeout between retries.
 
-Staring in curl 8.16.0, this option accepts a time as decimal number for parts
+Starting in curl 8.16.0, this option accepts a time as decimal number for parts
 of seconds. The decimal value needs to be provided using a dot (.) as decimal
 separator - not the local version even if it might be using another separator.
index 654b00f3933d67c5a7f7257ccb9160509d745e93..a5777585814cca485369a828024d5ae632e20173 100644 (file)
@@ -23,6 +23,6 @@ while performing, it may take longer than this given time period. To limit a
 single request's maximum time, use --max-time. Set this option to zero to not
 timeout retries.
 
-Staring in curl 8.16.0, this option accepts a time as decimal number for parts
+Starting in curl 8.16.0, this option accepts a time as decimal number for parts
 of seconds. The decimal value needs to be provided using a dot (.) as decimal
 separator - not the local version even if it might be using another separator.
index a32d48898dc791f2c655da7d023aa29c6be7419d..0257c6077ed63cdf3905f8259c4b94f2c3c73d4e 100644 (file)
@@ -68,7 +68,7 @@ static size_t readcb(char *buf, size_t nitems, size_t buflen, void *p)
     result = curl_ws_start_frame(ctx->easy, CURLWS_TEXT,
                                  (curl_off_t)ctx->blen);
     if(result) {
-      fprintf(stderr, "error staring frame: %d\n", result);
+      fprintf(stderr, "error starting frame: %d\n", result);
       return CURL_READFUNC_ABORT;
     }
   }
index cf67d33bfe142c0d0c21571a983f5f57e2f5bab9..166c5cb7e054746956fd6b906215eb5ca6373600 100644 (file)
@@ -84,7 +84,7 @@ static size_t readcb(char *buf, size_t nitems, size_t buflen, void *p)
     result = curl_ws_start_frame(ctx->easy, CURLWS_TEXT,
                                  (curl_off_t)ctx->msg_len);
     if(result) {
-      fprintf(stderr, "error staring frame: %d\n", result);
+      fprintf(stderr, "error starting frame: %d\n", result);
       return CURL_READFUNC_ABORT;
     }
   }