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()) }
}
/// Create a [`String`] by repeating a string `n` times.
/// Creates a new [`String`] by repeating a string `n` times.
///
/// [`String`]: string/struct.String.html
///