From 3fdb5e8987ca811c094593b0f816a64900880d23 Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Thu, 8 Aug 2024 03:34:21 +0100 Subject: [PATCH] docs: fix typo in terminal.rs (#1313) --- src/terminal/terminal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terminal/terminal.rs b/src/terminal/terminal.rs index c73de5fe..f1ba8641 100644 --- a/src/terminal/terminal.rs +++ b/src/terminal/terminal.rs @@ -441,7 +441,7 @@ where } /// Sets the cursor position. - #[deprecated = "the method aet_cursor_position indicates more clearly what about the cursor to set"] + #[deprecated = "the method set_cursor_position indicates more clearly what about the cursor to set"] pub fn set_cursor(&mut self, x: u16, y: u16) -> io::Result<()> { self.set_cursor_position(Position { x, y }) }