Skip to content

Commit

Permalink
Fill in tracking issue number for read_exact_at/write_all_at
Browse files Browse the repository at this point in the history
  • Loading branch information
drrlvn committed Jul 2, 2018
1 parent 7015dfd commit 73166f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/sys/unix/ext/fs.rs
Expand Up @@ -109,7 +109,7 @@ pub trait FileExt {
/// Ok(())
/// }
/// ```
#[unstable(feature = "rw_exact_all_at", issue = "0")]
#[unstable(feature = "rw_exact_all_at", issue = "51984")]
fn read_exact_at(&self, mut buf: &mut [u8], mut offset: u64) -> io::Result<()> {
while !buf.is_empty() {
match self.read_at(buf, offset) {
Expand Down Expand Up @@ -204,7 +204,7 @@ pub trait FileExt {
/// Ok(())
/// }
/// ```
#[unstable(feature = "rw_exact_all_at", issue = "0")]
#[unstable(feature = "rw_exact_all_at", issue = "51984")]
fn write_all_at(&self, mut buf: &[u8], mut offset: u64) -> io::Result<()> {
while !buf.is_empty() {
match self.write_at(buf, offset) {
Expand Down

0 comments on commit 73166f7

Please sign in to comment.