Browse Source

Update the docstrings of PollAt

Closes: #214
Approved by: whitequark
Ole Martin Ruud 6 years ago
parent
commit
bfe0625308
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/socket/mod.rs

+ 4 - 4
src/socket/mod.rs

@@ -55,14 +55,14 @@ pub use self::set::{Iter as SocketSetIter, IterMut as SocketSetIterMut};
 pub use self::ref_::Ref as SocketRef;
 pub(crate) use self::ref_::Session as SocketSession;
 
-/// Gives an indication on when the socket should be polled
+/// Gives an indication on the next time the socket should be polled.
 #[derive(Debug, PartialOrd, Ord, PartialEq, Eq, Clone, Copy)]
 pub(crate) enum PollAt {
-    /// Should be polled immidiately
+    /// The socket needs to be polled immidiately.
     Now,
-    /// Should be polled at given [Instant][struct.Instant]
+    /// The socket needs to be polled at given [Instant][struct.Instant].
     Time(Instant),
-    /// Should be polled on incoming packet
+    /// The socket does not need to be polled unless there are external changes.
     Ingress,
 }