Skip to content

Commit 3a1c83c

Browse files
committed
Remove superflouos doc comments
1 parent 9b4edb0 commit 3a1c83c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/unix/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,6 @@ pub const INADDR_NONE: in_addr_t = 4294967295;
232232
cfg_if! {
233233
if #[cfg(any(dox, target_os = "l4re"))] {
234234
// on dox builds don't pull in anything
235-
// L4Re builds pass the required libs using -Z to the compiler.
236235
} else if #[cfg(all(not(stdbuild), feature = "use_std"))] {
237236
// cargo build, don't pull in anything extra as the libstd dep
238237
// already pulls in all libs.

src/unix/uclibc/x86_64/l4re.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// L4Re specifics
22
/// This module contains definitions required by various L4Re libc backends.
3-
/// These are formally not part of the libc, but are a dependency of the libc
4-
/// and hence we should provide them here.
3+
/// Some of them are formally not part of the libc, but are a dependency of the libc and hence we
4+
/// should provide them here.
55
66
pub type l4_umword_t = ::c_ulong; // Unsigned machine word.
77

0 commit comments

Comments
 (0)