Fix broken rustdoc links

This commit is contained in:
Robert Hensing 2026-01-12 20:17:40 +01:00
parent e6148b587f
commit 6d941407fe
3 changed files with 12 additions and 12 deletions

View file

@ -71,7 +71,7 @@ pub struct Value {
impl Value {
/// Take ownership of a new [`Value`].
///
/// This does not call [`nix_c_raw::gc_incref`], but does call [`nix_c_raw::nix_gc_decref`] when [dropped][`Drop`].
/// This does not call [`nix_bindings_util_sys::gc_incref`], but does call [`nix_bindings_util_sys::gc_decref`] when [dropped][`Drop`].
///
/// # Safety
///
@ -84,7 +84,7 @@ impl Value {
/// Borrow a reference to a [`Value`].
///
/// This calls [`nix_c_raw::value_incref`], and the returned Value will call [`nix_c_raw::value_decref`] when dropped.
/// This calls [`nix_bindings_util_sys::value_incref`], and the returned Value will call [`nix_bindings_util_sys::value_decref`] when dropped.
///
/// # Safety
///