We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bc7b9a commit c06f801Copy full SHA for c06f801
library/core/src/io/borrowed_buf.rs
@@ -139,9 +139,11 @@ impl<'data> BorrowedBuf<'data> {
139
}
140
141
142
-/// A writeable view of the unfilled portion of a [`BorrowedBuf`](BorrowedBuf).
+/// A writeable view of the unfilled portion of a [`BorrowedBuf`].
143
+///
144
+/// The unfilled portion consists of an initialized and an uninitialized part; see [`BorrowedBuf`]
145
+/// for details.
146
///
-/// Provides access to the initialized and uninitialized parts of the underlying `BorrowedBuf`.
147
/// Data can be written directly to the cursor by using [`append`](BorrowedCursor::append) or
148
/// indirectly by getting a slice of part or all of the cursor and writing into the slice. In the
149
/// indirect case, the caller must call [`advance`](BorrowedCursor::advance) after writing to inform
0 commit comments