Skip to content

Commit c513d2d

Browse files
Fix rustdoc build
1 parent 2f1dc46 commit c513d2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/string/drain.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ use super::StringView;
44

55
/// A draining iterator for `String`.
66
///
7-
/// This struct is created by the [`drain`] method on [`String`]. See its
7+
/// This struct is created by the [`drain`] method on [`crate::String`]. See its
88
/// documentation for more.
99
///
10-
/// [`drain`]: String::drain
10+
/// [`drain`]: crate::String::drain
1111
pub struct Drain<'a> {
1212
/// Will be used as &'a mut String in the destructor
1313
pub(super) string: *mut StringView,

0 commit comments

Comments
 (0)