Skip to content

Commit 73166f7

Browse files
committed
Fill in tracking issue number for read_exact_at/write_all_at
1 parent 7015dfd commit 73166f7

File tree

1 file changed

+2
-2
lines changed
  • src/libstd/sys/unix/ext

1 file changed

+2
-2
lines changed

src/libstd/sys/unix/ext/fs.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ pub trait FileExt {
109109
/// Ok(())
110110
/// }
111111
/// ```
112-
#[unstable(feature = "rw_exact_all_at", issue = "0")]
112+
#[unstable(feature = "rw_exact_all_at", issue = "51984")]
113113
fn read_exact_at(&self, mut buf: &mut [u8], mut offset: u64) -> io::Result<()> {
114114
while !buf.is_empty() {
115115
match self.read_at(buf, offset) {
@@ -204,7 +204,7 @@ pub trait FileExt {
204204
/// Ok(())
205205
/// }
206206
/// ```
207-
#[unstable(feature = "rw_exact_all_at", issue = "0")]
207+
#[unstable(feature = "rw_exact_all_at", issue = "51984")]
208208
fn write_all_at(&self, mut buf: &[u8], mut offset: u64) -> io::Result<()> {
209209
while !buf.is_empty() {
210210
match self.write_at(buf, offset) {

0 commit comments

Comments
 (0)