Skip to content

Commit

Permalink
fix last references of use_std
Browse files Browse the repository at this point in the history
  • Loading branch information
klkvr committed Mar 5, 2025
1 parent 2b71801 commit 80b6f2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1280,17 +1280,17 @@ impl_specific_ref_and_mut!(str,);
impl_specific_ref_and_mut!(
::std::path::Path,
cfg(feature = "std"),
doc = "Requires crate feature `use_std`."
doc = "Requires crate feature `std`."
);
impl_specific_ref_and_mut!(
::std::ffi::OsStr,
cfg(feature = "std"),
doc = "Requires crate feature `use_std`."
doc = "Requires crate feature `std`."
);
impl_specific_ref_and_mut!(
::std::ffi::CStr,
cfg(feature = "std"),
doc = "Requires crate feature `use_std`."
doc = "Requires crate feature `std`."
);

impl<L, R, Target> AsRef<[Target]> for Either<L, R>
Expand Down

0 comments on commit 80b6f2a

Please sign in to comment.