We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7bfb1a commit 3c66f96Copy full SHA for 3c66f96
src/libcollections/string.rs
@@ -14,12 +14,11 @@
14
//! [`ToString`]s, and several error types that may result from working with
15
//! [`String`]s.
16
//!
17
-//! [`String`]: struct.String.html
18
//! [`ToString`]: trait.ToString.html
19
20
//! # Examples
21
22
-//! There are multiple ways to create a new `String` from a string literal:
+//! There are multiple ways to create a new [`String`] from a string literal:
23
24
//! ```
25
//! let s = "Hello".to_string();
@@ -28,9 +27,11 @@
28
27
//! let s: String = "also this".into();
29
30
31
-//! You can create a new `String` from an existing one by concatenating with
+//! You can create a new [`String`] from an existing one by concatenating with
32
//! `+`:
33
+//! [`String`]: struct.String.html
34
+//!
35
36
37
0 commit comments