Skip to content

Commit 232aa63

Browse files
ninevrajeff-hiner
authored andcommitted
Fix some broken doc links
1 parent f30bcc6 commit 232aa63

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/raw_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ mod tokio_stream {
814814
///
815815
/// This can be used by calling [`stream.next_event().await?`](Self::next_event), or if you
816816
/// need to pass it as a stream somewhere, the [`futures::Stream`](Stream) implementation.
817-
/// There's also a lower-level [`poll_event`] function if you need to fetch an event from
817+
/// There's also a lower-level [`Self::poll_event`] function if you need to fetch an event from
818818
/// inside a `Future::poll` impl.
819819
pub struct EventStream {
820820
device: AsyncFd<RawDevice>,

src/sync_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ mod tokio_stream {
739739
///
740740
/// This can be used by calling [`stream.next_event().await?`](Self::next_event), or if you
741741
/// need to pass it as a stream somewhere, the [`futures::Stream`](Stream) implementation.
742-
/// There's also a lower-level [`poll_event`] function if you need to fetch an event from
742+
/// There's also a lower-level [`Self::poll_event`] function if you need to fetch an event from
743743
/// inside a `Future::poll` impl.
744744
pub struct EventStream {
745745
device: AsyncFd<Device>,

src/uinput.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ mod tokio_stream {
537537
///
538538
/// This can be used by calling [`stream.next_event().await?`](Self::next_event), or if you
539539
/// need to pass it as a stream somewhere, the [`futures::Stream`](Stream) implementation.
540-
/// There's also a lower-level [`poll_event`] function if you need to fetch an event from
540+
/// There's also a lower-level [`Self::poll_event`] function if you need to fetch an event from
541541
/// inside a `Future::poll` impl.
542542
pub struct VirtualEventStream {
543543
device: AsyncFd<VirtualDevice>,

0 commit comments

Comments
 (0)