diff options
author | Brian Bergeron <brian.e.bergeron@gmail.com> | 2020-04-21 22:08:23 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-04-22 08:14:35 +0200 |
commit | f807d163c9ed6d5e591a1af8e2a729b6ec4e5462 (patch) | |
tree | 1191b863f1f2840faa7d54074c483d15ff5b87e5 /include | |
parent | 2d137dedb3fa266500d5b33f5cca7846e123e6a5 (diff) |
curl.h: update comment typo
"routines with be invoked" -> "routines will be invoked"
Closes #5279
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 00156a8b4..11246ea30 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -2434,7 +2434,7 @@ CURL_EXTERN CURLcode curl_global_init(long flags); * initialize libcurl and set user defined memory management callback * functions. Users can implement memory management routines to check for * memory leaks, check for mis-use of the curl library etc. User registered - * callback routines with be invoked by this library instead of the system + * callback routines will be invoked by this library instead of the system * memory management routines like malloc, free etc. */ CURL_EXTERN CURLcode curl_global_init_mem(long flags, |