Skip to content

Commit 9a71c69

Browse files
guanqunalexcrichton
authored andcommitted
small typo fixes (#292)
1 parent 0d5dbea commit 9a71c69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/multi.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pub struct Message<'multi> {
5454
/// from the multi handle when desired.
5555
pub struct EasyHandle {
5656
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.
5858
_marker: marker::PhantomData<&'static Multi>,
5959
}
6060

@@ -65,7 +65,7 @@ pub struct EasyHandle {
6565
/// from the multi handle when desired.
6666
pub struct Easy2Handle<H> {
6767
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.
6969
_marker: marker::PhantomData<&'static Multi>,
7070
}
7171

@@ -304,7 +304,7 @@ impl Multi {
304304
/// Sets the pipeline length.
305305
///
306306
/// 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
308308
/// is only used for HTTP/1.1 pipelining, and not HTTP/2 multiplexing.
309309
pub fn set_pipeline_length(&mut self, val: usize) -> Result<(), MultiError> {
310310
self.setopt_long(curl_sys::CURLMOPT_MAX_PIPELINE_LENGTH, val as c_long)

0 commit comments

Comments
 (0)