summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-01-14 03:06:55 +0000
committerAlyssa Ross <hi@alyssa.is>2020-02-11 16:40:26 +0000
commit353a9e097c984c6f57abbd4e44723a31e49ae612 (patch)
treef5aed5b982803857836ae64f6c535a4de65e78ec
parent17cdcf5deacf82c3e91213121907abd3690d1720 (diff)
downloadcrosvm-353a9e097c984c6f57abbd4e44723a31e49ae612.tar
crosvm-353a9e097c984c6f57abbd4e44723a31e49ae612.tar.gz
crosvm-353a9e097c984c6f57abbd4e44723a31e49ae612.tar.bz2
crosvm-353a9e097c984c6f57abbd4e44723a31e49ae612.tar.lz
crosvm-353a9e097c984c6f57abbd4e44723a31e49ae612.tar.xz
crosvm-353a9e097c984c6f57abbd4e44723a31e49ae612.tar.zst
crosvm-353a9e097c984c6f57abbd4e44723a31e49ae612.zip
sys_util::PollToken: fix typo in documentation
-rw-r--r--sys_util/src/poll.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys_util/src/poll.rs b/sys_util/src/poll.rs
index 1b92c96..54d4354 100644
--- a/sys_util/src/poll.rs
+++ b/sys_util/src/poll.rs
@@ -42,7 +42,7 @@ impl Default for EpollEvents {
 
 /// Trait for a token that can be associated with an `fd` in a `PollContext`.
 ///
-/// Simple enums that have no or primitive variant data data can use the `#[derive(PollToken)]`
+/// Simple enums that have no or primitive variant data can use the `#[derive(PollToken)]`
 /// custom derive to implement this trait. See
 /// [poll_token_derive::poll_token](../poll_token_derive/fn.poll_token.html) for details.
 pub trait PollToken {