1
Fork 0

replace version placeholder

This commit is contained in:
Pietro Albini 2024-06-10 14:50:54 +02:00
parent 534b5855a6
commit be9e27e490
No known key found for this signature in database
GPG key ID: CD76B35F7734769E
24 changed files with 119 additions and 122 deletions

View file

@ -2058,7 +2058,7 @@ pub trait Seek {
/// ```
///
/// [`BufReader`]: crate::io::BufReader
#[stable(feature = "seek_seek_relative", since = "CURRENT_RUSTC_VERSION")]
#[stable(feature = "seek_seek_relative", since = "1.80.0")]
fn seek_relative(&mut self, offset: i64) -> Result<()> {
self.seek(SeekFrom::Current(offset))?;
Ok(())