docs: std::string::String.repeat(): slightly rephrase to be more in-line with other descriptions.

add ticks around a few keywords in other descriptions.
This commit is contained in:
Matthias Krüger
2018-08-22 08:06:39 +02:00
parent 786ccc336d
commit 11f3918ca2
2 changed files with 4 additions and 4 deletions

View File

@@ -513,7 +513,7 @@ impl str {
unsafe { String::from_utf8_unchecked(slice.into_vec()) } unsafe { String::from_utf8_unchecked(slice.into_vec()) }
} }
/// Create a [`String`] by repeating a string `n` times. /// Creates a new [`String`] by repeating a string `n` times.
/// ///
/// [`String`]: string/struct.String.html /// [`String`]: string/struct.String.html
/// ///

View File

@@ -752,7 +752,7 @@ impl String {
self.vec self.vec
} }
/// Extracts a string slice containing the entire string. /// Extracts a string slice containing the entire `String`.
/// ///
/// # Examples /// # Examples
/// ///
@@ -1454,8 +1454,8 @@ impl String {
self.vec.clear() self.vec.clear()
} }
/// Creates a draining iterator that removes the specified range in the string /// Creates a draining iterator that removes the specified range in the `String`
/// and yields the removed chars. /// and yields the removed `chars`.
/// ///
/// Note: The element range is removed even if the iterator is not /// Note: The element range is removed even if the iterator is not
/// consumed until the end. /// consumed until the end.