summaryrefslogtreecommitdiff
path: root/docs/INTERNALS.md
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2020-12-12 09:59:10 -0800
committerDan Fandrich <dan@coneharvesters.com>2020-12-12 09:59:28 -0800
commit2a264d494e006b8ca9f1bad0798893c7b52f3a98 (patch)
tree651ad0bcdc4aae982b1c2039d2d1a447ccdcb902 /docs/INTERNALS.md
parentc29db0303d52ee5db853a600cf3b6a2a5e4c042e (diff)
downloadcurl-2a264d494e006b8ca9f1bad0798893c7b52f3a98.tar.gz
docs: Fix some typos
[skip ci]
Diffstat (limited to 'docs/INTERNALS.md')
-rw-r--r--docs/INTERNALS.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/INTERNALS.md b/docs/INTERNALS.md
index 6f6c8b88a..f5da02f43 100644
--- a/docs/INTERNALS.md
+++ b/docs/INTERNALS.md
@@ -184,8 +184,9 @@ Library
`curl_global_init()` and `curl_global_cleanup()` should be called by the
application to initialize and clean up global stuff in the library. As of
- today, it can handle the global SSL initing if SSL is enabled and it can init
- the socket layer on windows machines. libcurl itself has no "global" scope.
+ today, it can handle the global SSL initialization if SSL is enabled and it
+ can initialize the socket layer on Windows machines. libcurl itself has no
+ "global" scope.
All printf()-style functions use the supplied clones in `lib/mprintf.c`. This
makes sure we stay absolutely platform independent.
@@ -226,7 +227,7 @@ Curl_connect()
This function makes sure there's an allocated and initiated `connectdata`
struct that is used for this particular connection only (although there may
be several requests performed on the same connect). A bunch of things are
- inited/inherited from the `Curl_easy` struct.
+ initialized/inherited from the `Curl_easy` struct.
<a name="multi_do"></a>
multi_do()