remove unnecessary comments
This commit is contained in:
parent
235700fea0
commit
3781a1a2ac
1 changed files with 0 additions and 2 deletions
|
@ -774,7 +774,6 @@ impl OsStr {
|
||||||
/// [`make_ascii_lowercase`]: #method.make_ascii_lowercase
|
/// [`make_ascii_lowercase`]: #method.make_ascii_lowercase
|
||||||
#[unstable(feature = "osstring_ascii", issue = "none")]
|
#[unstable(feature = "osstring_ascii", issue = "none")]
|
||||||
pub fn to_ascii_lowercase(&self) -> OsString {
|
pub fn to_ascii_lowercase(&self) -> OsString {
|
||||||
// OsString::from_inner(Buf::from_inner(self.inner.inner.to_ascii_lowercase()))
|
|
||||||
OsString::from_inner(self.inner.to_ascii_lowercase())
|
OsString::from_inner(self.inner.to_ascii_lowercase())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -799,7 +798,6 @@ impl OsStr {
|
||||||
/// [`make_ascii_uppercase`]: #method.make_ascii_uppercase
|
/// [`make_ascii_uppercase`]: #method.make_ascii_uppercase
|
||||||
#[unstable(feature = "osstring_ascii", issue = "none")]
|
#[unstable(feature = "osstring_ascii", issue = "none")]
|
||||||
pub fn to_ascii_uppercase(&self) -> OsString {
|
pub fn to_ascii_uppercase(&self) -> OsString {
|
||||||
// OsString::from_inner(Buf::from_inner(self.inner.inner.to_ascii_lowercase()))
|
|
||||||
OsString::from_inner(self.inner.to_ascii_uppercase())
|
OsString::from_inner(self.inner.to_ascii_uppercase())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue