Merge pull request #51 from debris/patch-1

fixed typo in split.rs
This commit is contained in:
Alex Crichton
2016-10-05 09:03:02 -07:00
committed by GitHub
+1 -1
View File
@@ -11,7 +11,7 @@ pub struct ReadHalf<T> {
handle: TaskRc<RefCell<T>>,
}
/// The readable half of an object returned from `Io::split`.
/// The writable half of an object returned from `Io::split`.
pub struct WriteHalf<T> {
handle: TaskRc<RefCell<T>>,
}