summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/sys/select.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/sys/select.rs b/src/sys/select.rs
index 8591dd85..9359cc59 100644
--- a/src/sys/select.rs
+++ b/src/sys/select.rs
@@ -64,9 +64,11 @@ impl FdSet {
self.fds(None).next_back()
}
- /// Returns an iterator over the file descriptors in the set. For
- /// performance, it takes an optional higher bound: the iterator will not
- /// return any elements of the set greater than the given file descriptor.
+ /// Returns an iterator over the file descriptors in the set.
+ ///
+ /// For performance, it takes an optional higher bound: the iterator will
+ /// not return any elements of the set greater than the given file
+ /// descriptor.
///
/// # Examples
///