]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
docs: fix typos
authorDaniel Gustafsson <daniel@yesql.se>
Thu, 28 Nov 2019 11:57:58 +0000 (12:57 +0100)
committerDaniel Gustafsson <daniel@yesql.se>
Thu, 28 Nov 2019 11:58:47 +0000 (12:58 +0100)
docs/ALTSVC.md
docs/INSTALL.md
docs/KNOWN_BUGS
docs/PARALLEL-TRANSFERS.md
docs/TODO

index 48401415bfbc938112ee8ba9b240dd3aa0a24265..6a462bbbc86b1f778526cf936a671e26900b511e 100644 (file)
@@ -27,7 +27,7 @@ space separated fields.
 4. The ALPN id for the destination host
 5. The host name for the destination host
 6. The host number for the destination host
-7. The expiration date and time of this entry withing double quotes. The date format is "YYYYMMDD HH:MM:SS" and the time zone is GMT.
+7. The expiration date and time of this entry within double quotes. The date format is "YYYYMMDD HH:MM:SS" and the time zone is GMT.
 8. Boolean (1 or 0) if "persist" was set for this entry
 9. Integer priority value (not currently used)
 
index 4b1ede719baa229e3f0b431af4f790438d451c34..380f3b38e0fd1beb27a38bc5ac76fea70f326342 100644 (file)
@@ -307,7 +307,7 @@ for `aarch64` and API level 29:
     export RANLIB=$TOOLCHAIN/bin/aarch64-linux-android-ranlib
     export STRIP=$TOOLCHAIN/bin/aarch64-linux-android-strip
 
-When building on Linux or targetting other API levels or architectures, you need
+When building on Linux or targeting other API levels or architectures, you need
 to adjust those variables accordingly. After that you can build curl like this:
 
     ./configure --host aarch64-linux-android --with-pic --disable-shared
index 5134e736783dd8df36d2d056561c3f88e0a4b821..a83bd9bf81b9fa073297f0ee890b8d5b3e442635 100644 (file)
@@ -339,7 +339,7 @@ problems may have been fixed or changed somewhat since this was written!
 
 5.1 USE_UNIX_SOCKETS on Windows
 
- Due to incorrect CMake checks for the presense of the feature, it will never
+ Due to incorrect CMake checks for the presence of the feature, it will never
  be enabled for windows in a cmake build.
 
  See https://github.com/curl/curl/issues/4040
index d3b38aee185237e23675e7a030baf64d448a45e8..da688ea050ef1e1dbe1ab7353b50ef9f03a6c409 100644 (file)
@@ -18,7 +18,7 @@ completely different than the regular one used for each single transfer.
 
  o percent download (if known, which means *all* transfers need to have a
    known size)
- o precent upload (if known, with the same caveat as for download)
+ o percent upload (if known, with the same caveat as for download)
  o total amount of downloaded data
  o total amount of uploaded data
  o number of transfers to perform
index e75c1647bebf30a93a95652ab1595cae8feb3858..6f4919c236c537d84d23da69e13adafa53d4326c 100644 (file)
--- a/docs/TODO
+++ b/docs/TODO
@@ -813,7 +813,7 @@ that doesn't exist on the server, just like --ftp-create-dirs.
 
  The SFTP code in libcurl checks the file size *before* a transfer starts and
  then proceeds to transfer exactly that amount of data. If the remote file
- grows while the tranfer is in progress libcurl won't notice and will not
+ grows while the transfer is in progress libcurl won't notice and will not
  adapt. The OpenSSH SFTP command line tool does and libcurl could also just
  attempt to download more to see if there is more to get...