We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a1876c commit 582ad49Copy full SHA for 582ad49
library/std/src/env.rs
@@ -469,7 +469,6 @@ pub struct SplitPaths<'a> {
469
/// None => println!("{key} is not defined in the environment.")
470
/// }
471
/// ```
472
-#[doc(alias = "PATH")]
473
#[stable(feature = "env", since = "1.0.0")]
474
pub fn split_paths<T: AsRef<OsStr> + ?Sized>(unparsed: &T) -> SplitPaths<'_> {
475
SplitPaths { inner: os_imp::split_paths(unparsed.as_ref()) }
@@ -565,7 +564,6 @@ pub struct JoinPathsError {
565
564
566
///
567
/// [`env::split_paths()`]: split_paths
568
569
570
pub fn join_paths<I, T>(paths: I) -> Result<OsString, JoinPathsError>
571
where
0 commit comments