@@ -54,7 +54,7 @@ pub struct Message<'multi> {
54
54
/// from the multi handle when desired.
55
55
pub struct EasyHandle {
56
56
easy : Easy ,
57
- // This is now effecitvely bound to a `Multi`, so it is no longer sendable.
57
+ // This is now effectively bound to a `Multi`, so it is no longer sendable.
58
58
_marker : marker:: PhantomData < & ' static Multi > ,
59
59
}
60
60
@@ -65,7 +65,7 @@ pub struct EasyHandle {
65
65
/// from the multi handle when desired.
66
66
pub struct Easy2Handle < H > {
67
67
easy : Easy2 < H > ,
68
- // This is now effecitvely bound to a `Multi`, so it is no longer sendable.
68
+ // This is now effectively bound to a `Multi`, so it is no longer sendable.
69
69
_marker : marker:: PhantomData < & ' static Multi > ,
70
70
}
71
71
@@ -304,7 +304,7 @@ impl Multi {
304
304
/// Sets the pipeline length.
305
305
///
306
306
/// This sets the max number that will be used as the maximum amount of
307
- /// outstanding reuqests in an HTTP/1.1 pipelined connection. This option
307
+ /// outstanding requests in an HTTP/1.1 pipelined connection. This option
308
308
/// is only used for HTTP/1.1 pipelining, and not HTTP/2 multiplexing.
309
309
pub fn set_pipeline_length ( & mut self , val : usize ) -> Result < ( ) , MultiError > {
310
310
self . setopt_long ( curl_sys:: CURLMOPT_MAX_PIPELINE_LENGTH , val as c_long )
0 commit comments