From: Florian Friedrich Date: Tue, 2 Sep 2025 07:44:07 +0000 (+0200) Subject: docs: fix typo (staring -> starting) X-Git-Tag: curl-8_16_0~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ad42850b231a557d8955bf296a6b93383d416d92;p=thirdparty%2Fcurl.git docs: fix typo (staring -> starting) Closes #18450 --- diff --git a/docs/cmdline-opts/retry-delay.md b/docs/cmdline-opts/retry-delay.md index 25ab1a660b..dbc78e00d8 100644 --- a/docs/cmdline-opts/retry-delay.md +++ b/docs/cmdline-opts/retry-delay.md @@ -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. diff --git a/docs/cmdline-opts/retry-max-time.md b/docs/cmdline-opts/retry-max-time.md index 654b00f393..a577758581 100644 --- a/docs/cmdline-opts/retry-max-time.md +++ b/docs/cmdline-opts/retry-max-time.md @@ -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. diff --git a/docs/examples/websocket-updown.c b/docs/examples/websocket-updown.c index a32d48898d..0257c6077e 100644 --- a/docs/examples/websocket-updown.c +++ b/docs/examples/websocket-updown.c @@ -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; } } diff --git a/docs/libcurl/curl_ws_start_frame.md b/docs/libcurl/curl_ws_start_frame.md index cf67d33bfe..166c5cb7e0 100644 --- a/docs/libcurl/curl_ws_start_frame.md +++ b/docs/libcurl/curl_ws_start_frame.md @@ -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; } }