Commit 56b7663f authored by Ville Skyttä's avatar Ville Skyttä Committed by Daniel Stenberg
Browse files

docs: Spelling fixes

parent 025dbe46
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ those transfers. With the new option `CURLOPT_PIPEWAIT` (added in 7.43.0), you
can ask that a transfer should rather wait and see in case there's a
connection for the same host in progress that might end up being possible to
multiplex on. It favours keeping the number of connections low to the cost of
slightly longer time to first byte transfered.
slightly longer time to first byte transferred.

Applications
------------
+1 −1
Original line number Diff line number Diff line
@@ -429,7 +429,7 @@ be the same as/similar to FTP.

11.2 Honor file timestamps

The timestamp of the transfered file should reflect that of the original file.
The timestamp of the transferred file should reflect that of the original file.

11.3 Use NTLMv2

+1 −1
Original line number Diff line number Diff line
@@ -490,7 +490,7 @@ int main(int argc, char **argv) {
        BIO_printf(p.errorbio,"the response has a correct mimetype : %s\n",
                   response);
      else
        BIO_printf(p.errorbio,"the reponse doesn\'t has an acceptable "
        BIO_printf(p.errorbio,"the response doesn\'t have an acceptable "
                   "mime type, it is %s instead of %s\n",
                   response,mimetypeaccept);
  }
+3 −3
Original line number Diff line number Diff line
@@ -108,7 +108,7 @@ static size_t write_callback(char *buffer,
      size=rembuff;
    }
    else {
      /* realloc suceeded increase buffer size*/
      /* realloc succeeded increase buffer size*/
      url->buffer_len+=size - rembuff;
      url->buffer=newbuff;
    }
@@ -131,7 +131,7 @@ static int fill_buffer(URL_FILE *file, size_t want)
  CURLMcode mc; /* curl_multi_fdset() return code */

  /* only attempt to fill buffer if transactions still running and buffer
   * doesnt exceed required size already
   * doesn't exceed required size already
   */
  if((!file->still_running) || (file->buffer_pos > want))
    return 0;
@@ -229,7 +229,7 @@ static int use_buffer(URL_FILE *file,int want)
URL_FILE *url_fopen(const char *url,const char *operation)
{
  /* this code could check for URLs or types in the 'url' and
     basicly use the real fopen() for standard files */
     basically use the real fopen() for standard files */

  URL_FILE *file;
  (void)operation;
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ int main(void)
  CURL *curl;
  CURLcode res;
  struct FtpFile ftpfile={
    "curl.tar.gz", /* name to store the file as if succesful */
    "curl.tar.gz", /* name to store the file as if successful */
    NULL
  };

Loading