Skip to content

Commit 715e404

Browse files
committed
move attribute below doc comment
1 parent ef16db1 commit 715e404

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shims/unix/linux/fd/epoll.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ pub struct Epoll {
1212
pub file_descriptors: FxHashMap<i32, EpollEvent>,
1313
}
1414

15-
#[derive(Clone, Debug)]
1615
/// Epoll Events associate events with data.
1716
/// These fields are currently unused by miri.
1817
/// This matches the `epoll_event` struct defined
1918
/// by the epoll_ctl man page. For more information
2019
/// see the man page:
2120
///
2221
/// <https://man7.org/linux/man-pages/man2/epoll_ctl.2.html>
22+
#[derive(Clone, Debug)]
2323
pub struct EpollEvent {
2424
pub events: u32,
2525
/// `Scalar<Provenance>` is used to represent the

0 commit comments

Comments
 (0)