We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5ac064 commit ee10a1dCopy full SHA for ee10a1d
library/std/src/io/buffered/bufreader.rs
@@ -234,7 +234,7 @@ impl<R: Seek> BufReader<R> {
234
/// the buffer will not be flushed, allowing for more efficient seeks.
235
/// This method does not return the location of the underlying reader, so the caller
236
/// must track this information themselves if it is required.
237
- #[stable(feature = "bufreader_seek_relative", since = "1.52.0")]
+ #[stable(feature = "bufreader_seek_relative", since = "1.53.0")]
238
pub fn seek_relative(&mut self, offset: i64) -> io::Result<()> {
239
let pos = self.pos as u64;
240
if offset < 0 {
0 commit comments