Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion procfs-core/src/diskstats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::io::BufRead;
/// To fully understand these fields, please see the [iostats.txt](https://www.kernel.org/doc/Documentation/iostats.txt)
/// kernel documentation.
///
/// For an example, see the [diskstats.rs](https://github.com/eminence/procfs/tree/master/examples)
/// For an example, see the [diskstats.rs](https://github.com/eminence/procfs/tree/master/procfs/examples)
/// example in the source repo.
// Doc reference: https://www.kernel.org/doc/Documentation/ABI/testing/procfs-diskstats
// Doc reference: https://www.kernel.org/doc/Documentation/iostats.txt
Expand Down
2 changes: 1 addition & 1 deletion procfs-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ impl FromBufRead for VmStat {

/// Details about a loaded kernel module
///
/// For an example, see the [lsmod.rs](https://github.com/eminence/procfs/tree/master/examples)
/// For an example, see the [lsmod.rs](https://github.com/eminence/procfs/tree/master/procfs/examples)
/// example in the source repo.
#[derive(Debug, Clone)]
#[cfg_attr(feature = "serde1", derive(Serialize, Deserialize))]
Expand Down
2 changes: 1 addition & 1 deletion procfs-core/src/locks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl From<&str> for LockKind {
#[cfg_attr(feature = "serde1", derive(Serialize, Deserialize))]
/// Details about an individual file lock
///
/// For an example, see the [lslocks.rs](https://github.com/eminence/procfs/tree/master/examples)
/// For an example, see the [lslocks.rs](https://github.com/eminence/procfs/tree/master/procfs/examples)
/// example in the source repo.
pub struct Lock {
/// The type of lock
Expand Down
2 changes: 1 addition & 1 deletion procfs-core/src/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ impl super::FromBufRead for ArpEntries {

/// General statistics for a network interface/device
///
/// For an example, see the [interface_stats.rs](https://github.com/eminence/procfs/tree/master/examples)
/// For an example, see the [interface_stats.rs](https://github.com/eminence/procfs/tree/master/procfs/examples)
/// example in the source repo.
#[derive(Debug, Clone)]
#[cfg_attr(feature = "serde1", derive(Serialize, Deserialize))]
Expand Down
2 changes: 1 addition & 1 deletion procfs/src/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ impl super::Current for InterfaceDeviceStatus {
///
/// This data is from the `/proc/net/dev` file.
///
/// For an example, see the [interface_stats.rs](https://github.com/eminence/procfs/tree/master/examples)
/// For an example, see the [interface_stats.rs](https://github.com/eminence/procfs/tree/master/procfs/examples)
/// example in the source repo.
///
/// Note that this returns information from the networking namespace of the
Expand Down
Loading