fixed typo in split.rs

This commit is contained in:
Marek Kotewicz
2016-10-05 11:28:46 +02:00
committed by GitHub
parent e32115b1b4
commit a94be1bca9
+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>>,
}