adjust documentation links for slice ascii case functions to use newer rustdoc link format
This commit is contained in:
parent
d29d87f08b
commit
634d48d9d6
2 changed files with 4 additions and 4 deletions
|
@ -642,7 +642,7 @@ impl [u8] {
|
||||||
///
|
///
|
||||||
/// To uppercase the value in-place, use [`make_ascii_uppercase`].
|
/// To uppercase the value in-place, use [`make_ascii_uppercase`].
|
||||||
///
|
///
|
||||||
/// [`make_ascii_uppercase`]: #method.make_ascii_uppercase
|
/// [`make_ascii_uppercase`]: slice::make_ascii_uppercase
|
||||||
#[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
|
#[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn to_ascii_uppercase(&self) -> Vec<u8> {
|
pub fn to_ascii_uppercase(&self) -> Vec<u8> {
|
||||||
|
@ -659,7 +659,7 @@ impl [u8] {
|
||||||
///
|
///
|
||||||
/// To lowercase the value in-place, use [`make_ascii_lowercase`].
|
/// To lowercase the value in-place, use [`make_ascii_lowercase`].
|
||||||
///
|
///
|
||||||
/// [`make_ascii_lowercase`]: #method.make_ascii_lowercase
|
/// [`make_ascii_lowercase`]: slice::make_ascii_lowercase
|
||||||
#[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
|
#[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn to_ascii_lowercase(&self) -> Vec<u8> {
|
pub fn to_ascii_lowercase(&self) -> Vec<u8> {
|
||||||
|
|
|
@ -30,7 +30,7 @@ impl [u8] {
|
||||||
/// To return a new uppercased value without modifying the existing one, use
|
/// To return a new uppercased value without modifying the existing one, use
|
||||||
/// [`to_ascii_uppercase`].
|
/// [`to_ascii_uppercase`].
|
||||||
///
|
///
|
||||||
/// [`to_ascii_uppercase`]: #method.to_ascii_uppercase
|
/// [`to_ascii_uppercase`]: slice::to_ascii_uppercase
|
||||||
#[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
|
#[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn make_ascii_uppercase(&mut self) {
|
pub fn make_ascii_uppercase(&mut self) {
|
||||||
|
@ -47,7 +47,7 @@ impl [u8] {
|
||||||
/// To return a new lowercased value without modifying the existing one, use
|
/// To return a new lowercased value without modifying the existing one, use
|
||||||
/// [`to_ascii_lowercase`].
|
/// [`to_ascii_lowercase`].
|
||||||
///
|
///
|
||||||
/// [`to_ascii_lowercase`]: #method.to_ascii_lowercase
|
/// [`to_ascii_lowercase`]: slice::to_ascii_lowercase
|
||||||
#[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
|
#[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn make_ascii_lowercase(&mut self) {
|
pub fn make_ascii_lowercase(&mut self) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue