From 39e6f1c3a1694953fa764e1037b1cf8963e02658 Mon Sep 17 00:00:00 2001 From: mgunyho Date: Sun, 29 May 2022 19:41:34 +0300 Subject: [PATCH] Fix some broken links in docs (#671) --- src/event.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/event.rs b/src/event.rs index 01d1642..56ddf26 100644 --- a/src/event.rs +++ b/src/event.rs @@ -15,12 +15,12 @@ //! * use the [`read`](fn.read.html) & [`poll`](fn.poll.html) functions on any, but same, thread //! * or the [`EventStream`](struct.EventStream.html). //! -//! **Make sure to enable [raw mode](./terminal/index.html#raw-mode) in order for keyboard events to work properly** +//! **Make sure to enable [raw mode](../terminal/index.html#raw-mode) in order for keyboard events to work properly** //! //! ## Mouse Events //! //! Mouse events are not enabled by default. You have to enable them with the -//! [`EnableMouseCapture`](struct.EnableMouseCapture.html) command. See [Command API](./index.html#command-api) +//! [`EnableMouseCapture`](struct.EnableMouseCapture.html) command. See [Command API](../index.html#command-api) //! for more information. //! //! ## Examples