From 1cfbedc5c4f3387cc59a4a86ca14d44ccc74db87 Mon Sep 17 00:00:00 2001 From: OpenByte Date: Tue, 6 Feb 2024 23:25:17 +0100 Subject: [PATCH] Fix doc warning --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 2a5c50b..852e16f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -23,7 +23,7 @@ //! A rusty wrapper over the window event API specifically [`SetWinEventHook`](https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setwineventhook) and [`UnhookWinEvent`](https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-unhookwinevent). //! -//! For the type of events that can be hooked, see [`WindowEvent`](crate::WindowEvent). +//! For the type of events that can be hooked, see [`WindowEvent`]. //! //! # Example //! This example shows how to listen for all window events and print them to the console.