Skip to content

Commit b5e1edd

Browse files
authored
fix: FromStd::inner_mut deprecation note
1 parent 5e75afe commit b5e1edd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

io/src/bridge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ impl<T> FromStd<T> {
4040

4141
/// Returns a mutable reference to the wrapped value.
4242
#[inline]
43-
#[deprecated(since = "TBD", note = "use `get_ref()` instead")]
43+
#[deprecated(since = "TBD", note = "use `get_mut()` instead")]
4444
pub fn inner_mut(&mut self) -> &mut T { &mut self.0 }
4545
}
4646

0 commit comments

Comments
 (0)