We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 235700f commit 3781a1aCopy full SHA for 3781a1a
src/libstd/ffi/os_str.rs
@@ -774,7 +774,6 @@ impl OsStr {
774
/// [`make_ascii_lowercase`]: #method.make_ascii_lowercase
775
#[unstable(feature = "osstring_ascii", issue = "none")]
776
pub fn to_ascii_lowercase(&self) -> OsString {
777
- // OsString::from_inner(Buf::from_inner(self.inner.inner.to_ascii_lowercase()))
778
OsString::from_inner(self.inner.to_ascii_lowercase())
779
}
780
@@ -799,7 +798,6 @@ impl OsStr {
799
798
/// [`make_ascii_uppercase`]: #method.make_ascii_uppercase
800
801
pub fn to_ascii_uppercase(&self) -> OsString {
802
803
OsString::from_inner(self.inner.to_ascii_uppercase())
804
805
0 commit comments