Skip to content

Commit 3bf3410

Browse files
authored
Add inotify:: qualifiers to the inotify deprecation messages. (#1136)
1 parent 547fbe7 commit 3bf3410

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/fs/inotify.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ use crate::io::{read_uninit, Errno};
1212
use core::mem::{align_of, size_of, MaybeUninit};
1313
use linux_raw_sys::general::inotify_event;
1414

15-
#[deprecated(note = "Use add_watch.")]
15+
#[deprecated(note = "Use `inotify::add_watch`.")]
1616
#[doc(hidden)]
1717
pub use add_watch as inotify_add_watch;
18-
#[deprecated(note = "Use init.")]
18+
#[deprecated(note = "Use `inotify::init`.")]
1919
#[doc(hidden)]
2020
pub use init as inotify_init;
21-
#[deprecated(note = "Use remove_watch.")]
21+
#[deprecated(note = "Use `inotify::remove_watch`.")]
2222
#[doc(hidden)]
2323
pub use remove_watch as inotify_remove_watch;
2424

0 commit comments

Comments
 (0)