Skip to content

Commit 2a264d4

Browse files
committed
docs: Fix some typos
[skip ci]
1 parent c29db03 commit 2a264d4

File tree

7 files changed

+18
-17
lines changed

7 files changed

+18
-17
lines changed

docs/CODE_REVIEW.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ used as input to string functions.
162162
# Commit messages
163163

164164
Tightly coupled with a code review is making sure that the commit message is
165-
good. It is the responsibilitiy of the person who merges the code to make sure
165+
good. It is the responsibility of the person who merges the code to make sure
166166
that the commit message follows our standard (detailed in the
167167
[CONTRIBUTE.md](CONTRIBUTE.md) document). This includes making sure the PR
168168
identifies related issues and giving credit to reporters and helpers.

docs/FAQ

+3-3
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ FAQ
8383
5.1 Is libcurl thread-safe?
8484
5.2 How can I receive all data into a large memory chunk?
8585
5.3 How do I fetch multiple files with libcurl?
86-
5.4 Does libcurl do Winsock initing on win32 systems?
86+
5.4 Does libcurl do Winsock initialization on win32 systems?
8787
5.5 Does CURLOPT_WRITEDATA and CURLOPT_READDATA work on win32 ?
8888
5.6 What about Keep-Alive or persistent connections?
8989
5.7 Link errors when building libcurl on Windows!
@@ -915,9 +915,9 @@ FAQ
915915
When you invoke curl and get an error 60 error back it means that curl
916916
couldn't verify that the server's certificate was good. curl verifies the
917917
certificate using the CA cert bundle and verifying for which names the
918-
certficiate has been granted.
918+
certificate has been granted.
919919

920-
To completely disable the certficiate verification, use -k. This does
920+
To completely disable the certificate verification, use -k. This does
921921
however enable man-in-the-middle attacks and makes the transfer INSECURE.
922922
We strongly advice against doing this for more than experiments.
923923

docs/HELP-US.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ with as an entry-point into the project, perhaps because you are a newcomer or
2626
even maybe not a terribly experienced developer, here's our advice:
2727

2828
- Read through this document to get a grasp on a general approach to use
29-
- Consider adding a test case for something not currentled tested (correctly)
29+
- Consider adding a test case for something not currently tested (correctly)
3030
- Consider updating or adding documentation
3131
- One way to get your feet wet gently in the project, is to participate in an
3232
existing issue/PR and help out by reproducing the issue, review the code in

docs/HTTP2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ HTTP/2 with curl
77
Build prerequisites
88
-------------------
99
- nghttp2
10-
- OpenSSL, libressl, BoringSSL, NSS, GnutTLS, mbedTLS, wolfSSL or Schannel
10+
- OpenSSL, libressl, BoringSSL, NSS, GnuTLS, mbedTLS, wolfSSL or Schannel
1111
with a new enough version.
1212

1313
[nghttp2](https://nghttp2.org/)

docs/INTERNALS.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,9 @@ Library
184184

185185
`curl_global_init()` and `curl_global_cleanup()` should be called by the
186186
application to initialize and clean up global stuff in the library. As of
187-
today, it can handle the global SSL initing if SSL is enabled and it can init
188-
the socket layer on windows machines. libcurl itself has no "global" scope.
187+
today, it can handle the global SSL initialization if SSL is enabled and it
188+
can initialize the socket layer on Windows machines. libcurl itself has no
189+
"global" scope.
189190

190191
All printf()-style functions use the supplied clones in `lib/mprintf.c`. This
191192
makes sure we stay absolutely platform independent.
@@ -226,7 +227,7 @@ Curl_connect()
226227
This function makes sure there's an allocated and initiated `connectdata`
227228
struct that is used for this particular connection only (although there may
228229
be several requests performed on the same connect). A bunch of things are
229-
inited/inherited from the `Curl_easy` struct.
230+
initialized/inherited from the `Curl_easy` struct.
230231

231232
<a name="multi_do"></a>
232233
multi_do()

docs/TODO

+5-5
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@ that doesn't exist on the server, just like --ftp-create-dirs.
721721
You can specify the private and public keys for SSH/SSL as file paths. Some
722722
programs want to avoid using files and instead just pass them as in-memory
723723
data blobs. There's probably a challenge to make this work across the
724-
plethory of different TLS and SSH backends that curl supports.
724+
plethora of different TLS and SSH backends that curl supports.
725725
https://github.com/curl/curl/issues/2310
726726

727727
13.4 Cache/share OpenSSL contexts
@@ -799,7 +799,7 @@ that doesn't exist on the server, just like --ftp-create-dirs.
799799
certificates when comparing the pinned keys. Therefore it is not compatible
800800
with "HTTP Public Key Pinning" as there also intermediate and root
801801
certificates can be pinned. This is very useful as it prevents webadmins from
802-
"locking themself out of their servers".
802+
"locking themselves out of their servers".
803803

804804
Adding this feature would make curls pinning 100% compatible to HPKP and
805805
allow more flexible pinning.
@@ -824,7 +824,7 @@ that doesn't exist on the server, just like --ftp-create-dirs.
824824
13.14 Support the clienthello extension
825825

826826
Certain stupid networks and middle boxes have a problem with SSL handshake
827-
pakets that are within a certain size range because how that sets some bits
827+
packets that are within a certain size range because how that sets some bits
828828
that previously (in older TLS version) were not set. The clienthello
829829
extension adds padding to avoid that size range.
830830

@@ -1054,7 +1054,7 @@ that doesn't exist on the server, just like --ftp-create-dirs.
10541054

10551055
Consider a command line option that can make curl do multiple serial requests
10561056
slow, potentially with a (random) wait between transfers. There's also a
1057-
propsed set of standard HTTP headers to let servers let the client adapt to
1057+
proposed set of standard HTTP headers to let servers let the client adapt to
10581058
its rate limits:
10591059
https://www.ietf.org/id/draft-polli-ratelimit-headers-02.html
10601060

@@ -1143,7 +1143,7 @@ that doesn't exist on the server, just like --ftp-create-dirs.
11431143

11441144
18.23 Set the modification date on an uploaded file
11451145

1146-
For SFTP and posssibly FTP, curl could offer an option to set the
1146+
For SFTP and possibly FTP, curl could offer an option to set the
11471147
modification time for the uploaded file.
11481148

11491149
See https://github.com/curl/curl/issues/5768

docs/URL-SYNTAX.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@ For example, this could look like:
126126
## Scheme
127127

128128
The scheme specifies the protocol to use. A curl build can support a few or
129-
many different schemes. You can limit what schemes curl should acccept.
129+
many different schemes. You can limit what schemes curl should accept.
130130

131131
curl supports the following schemes on URLs specified to transfer. They are
132-
matched case insensitvely:
132+
matched case insensitively:
133133

134134
`dict`, `file`, `ftp`, `ftps`, `gopher`, `http`, `https`, `imap`, `imaps`,
135135
`ldap`, `ldaps`, `mqtt`, `pop3`, `pop3s`, `rtmp`, `rtmpe`, `rtmps`, `rtmpt`,
@@ -267,7 +267,7 @@ the same search but will only return postalAddress attributes:
267267

268268
ldap://ldap.example.com/o=My%20Organisation?postalAddress
269269

270-
Seearch for an empty DN and request information about the
270+
Search for an empty DN and request information about the
271271
`rootDomainNamingContext` attribute for an Active Directory server:
272272

273273
ldap://ldap.example.com/?rootDomainNamingContext

0 commit comments

Comments
 (0)