Skip to content

Commit ee10a1d

Browse files
committed
Bump stable version of bufreader_seek_relative.
1 parent c5ac064 commit ee10a1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/io/buffered/bufreader.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ impl<R: Seek> BufReader<R> {
234234
/// the buffer will not be flushed, allowing for more efficient seeks.
235235
/// This method does not return the location of the underlying reader, so the caller
236236
/// must track this information themselves if it is required.
237-
#[stable(feature = "bufreader_seek_relative", since = "1.52.0")]
237+
#[stable(feature = "bufreader_seek_relative", since = "1.53.0")]
238238
pub fn seek_relative(&mut self, offset: i64) -> io::Result<()> {
239239
let pos = self.pos as u64;
240240
if offset < 0 {

0 commit comments

Comments
 (0)