File tree Expand file tree Collapse file tree 5 files changed +5
-6
lines changed Expand file tree Collapse file tree 5 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ fn main() {
5454
5555 // Check for eg. `RUSTFLAGS=--cfg=rustix_use_experimental_asm`. This is a
5656 // rustc flag rather than a cargo feature flag because it's experimental
57- // and not something we want accidentally enabled via --all-features.
57+ // and not something we want accidentally enabled via ` --all-features` .
5858 let rustix_use_experimental_asm = var ( "CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM" ) . is_ok ( ) ;
5959
6060 // Miri doesn't support inline asm, and has builtin support for recognizing
Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ pub use imp::fs::types::FsWord;
3737///
3838/// [`utimensat`]: crate::fs::utimensat
3939/// [`futimens`]: crate::fs::futimens
40- //
4140// This is `repr(C)` and specifically laid out to match the representation used
4241// by `utimensat` and `futimens`, which expect 2-element arrays of timestamps.
4342#[ repr( C ) ]
Original file line number Diff line number Diff line change 1- //! rustix's `init` finction .
1+ //! rustix's `init` function .
22//!
33//! # Safety
44//!
Original file line number Diff line number Diff line change 1- //! Convenient and efficient string argment passing.
1+ //! Convenient and efficient string argument passing.
22//!
33//! This module defines the `Arg` trait and implements it for several common
44//! string types. This allows users to pass any of these string types directly
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ fn test_backends() {
3434 libc_dep
3535 ) ;
3636
37- // Test the use-default crate with --cfg=rustix_use_libc
37+ // Test the use-default crate with ` --cfg=rustix_use_libc`.
3838 assert ! (
3939 has_dependency(
4040 "test-crates/use-default" ,
@@ -57,7 +57,7 @@ fn test_backends() {
5757 "use-default with --cfg=rustix_use_libc depends on linux-raw-sys"
5858 ) ;
5959
60- // Test the use-default crate with --features=rustix/use-libc
60+ // Test the use-default crate with ` --features=rustix/use-libc`.
6161 assert ! (
6262 has_dependency(
6363 "test-crates/use-default" ,
You can’t perform that action at this time.
0 commit comments