summaryrefslogtreecommitdiff
path: root/src/sys/select.rs
diff options
context:
space:
mode:
authorRoss Light <ross@zombiezen.com>2020-04-14 10:04:30 -0700
committerRoss Light <ross@zombiezen.com>2020-04-14 10:04:30 -0700
commiteb5f28949cafd142362a693d2ddd750074f7c2af (patch)
tree17406d92bfffe668a49c0ee8f499aca135028d50 /src/sys/select.rs
parentbcfcf823c4aa930101b5274b877f1ac166a43584 (diff)
downloadnix-eb5f28949cafd142362a693d2ddd750074f7c2af.zip
Add space to doc comment of fds
Diffstat (limited to 'src/sys/select.rs')
-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
///