Skip to content

Commit 91fc98c

Browse files
committed
doc: Fix rustdoc bare_urls warnings
1 parent 5a1ced6 commit 91fc98c

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

src/new/apple_libc/signal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Header: `signal.h`
22
//!
3-
//! https://github.com/apple-oss-distributions/Libc/blob/main/include/signal.h
3+
//! <https://github.com/apple-oss-distributions/Libc/blob/main/include/signal.h>
44
55
pub use crate::sys::signal::*;

src/new/apple_xnu/arm/_mcontext.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Header: `arm/_mcontext.h`
22
//!
3-
//! https://github.com/apple-oss-distributions/xnu/blob/main/bsd/arm/_mcontext.h
3+
//! <https://github.com/apple-oss-distributions/xnu/blob/main/bsd/arm/_mcontext.h>
44
55
pub use crate::mach::machine::_structs::*;
66

src/new/apple_xnu/i386/_mcontext.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Header: `i386/_mcontext.h`
22
//!
3-
//! https://github.com/apple-oss-distributions/xnu/blob/main/bsd/i386/_mcontext.h
3+
//! <https://github.com/apple-oss-distributions/xnu/blob/main/bsd/i386/_mcontext.h>
44
55
pub use crate::mach::machine::_structs::*;
66

src/new/apple_xnu/mach/arm/_structs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Header: `arm/_structs.h`
22
//!
3-
//! https://github.com/apple-oss-distributions/xnu/blob/main/osfmk/mach/arm/_structs.h
3+
//! <https://github.com/apple-oss-distributions/xnu/blob/main/osfmk/mach/arm/_structs.h>
44
55
#[cfg(target_arch = "arm")]
66
use crate::prelude::*;

src/new/apple_xnu/mach/i386/_structs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Header: `i386/_structs.h`
22
//!
3-
//! https://github.com/apple-oss-distributions/xnu/blob/main/osfmk/mach/i386/_structs.h
3+
//! <https://github.com/apple-oss-distributions/xnu/blob/main/osfmk/mach/i386/_structs.h>
44
55
use crate::prelude::*;
66

src/new/apple_xnu/mach/machine/_structs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Header: `mach/machine/_structs.h`
22
//!
3-
//! https://github.com/apple-oss-distributions/xnu/blob/main/osfmk/mach/machine/_structs.h
3+
//! <https://github.com/apple-oss-distributions/xnu/blob/main/osfmk/mach/machine/_structs.h>
44
55
cfg_if! {
66
if #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] {

src/new/apple_xnu/mach/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Directory: `mach/`
22
//!
3-
//! https://github.com/apple-oss-distributions/xnu/tree/main/osfmk/mach
3+
//! <https://github.com/apple-oss-distributions/xnu/tree/main/osfmk/mach>
44
55
/// Directory: `mach/arm`
66
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]

src/new/apple_xnu/sys/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Directory: `sys/`
22
//!
3-
//! https://github.com/apple-oss-distributions/xnu/tree/main/bsd/sys
3+
//! <https://github.com/apple-oss-distributions/xnu/tree/main/bsd/sys>
44
55
pub(crate) mod signal;
66

src/new/apple_xnu/sys/signal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Header: `sys/signal.h`
22
//!
3-
//! https://github.com/apple-oss-distributions/xnu/blob/main/bsd/sys/signal.h
3+
//! <https://github.com/apple-oss-distributions/xnu/blob/main/bsd/sys/signal.h>
44
55
pub use crate::machine::_mcontext::*;
66
pub use crate::sys::_types::_ucontext::*;

0 commit comments

Comments
 (0)