aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_multi_assign.3
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-12-28 21:56:56 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-12-28 21:56:56 +0000
commitf61cfc59314e4779c13312efc4845f580f0933b1 (patch)
tree0b45702118bfb29f8554294853648f09fbdf9a49 /docs/libcurl/curl_multi_assign.3
parent27b8a5fd84faf025fffa2154786e55c45c9e499a (diff)
Anthony Bryan's man page cleanup in language and spelling
Diffstat (limited to 'docs/libcurl/curl_multi_assign.3')
-rw-r--r--docs/libcurl/curl_multi_assign.34
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/libcurl/curl_multi_assign.3 b/docs/libcurl/curl_multi_assign.3
index cb47a5e25..83dc7b72d 100644
--- a/docs/libcurl/curl_multi_assign.3
+++ b/docs/libcurl/curl_multi_assign.3
@@ -2,7 +2,7 @@
.\"
.TH curl_multi_assign 3 "9 Jul 2006" "libcurl 7.16.0" "libcurl Manual"
.SH NAME
-curl_multi_assign \- set data to associated with an internal socket
+curl_multi_assign \- set data to association with an internal socket
.SH SYNOPSIS
#include <curl/curl.h>
@@ -34,7 +34,7 @@ In a typical application you allocate a struct or at least use some kind of
semi-dynamic data for each socket that we must wait for action on when using
the \fIcurl_multi_socket(3)\fP approach.
-When our socket-callback get called by libcurl and we get to know about yet
+When our socket-callback gets called by libcurl and we get to know about yet
another socket to wait for, we can use \fIcurl_multi_assign(3)\fP to point out
the particular data so that when we get updates about this same socket again,
we don't have to find the struct associated with this socket by ourselves.