From 998250f3c3168855ede9ee14be9a52f884f12055 Mon Sep 17 00:00:00 2001 From: Thomas Churchman Date: Thu, 3 Feb 2022 13:04:46 +0100 Subject: [PATCH] Fix renderable_cursor method documentation This method no longer returns an `Option` since #5773. Co-authored-by: Kirill Chibisov --- alacritty/src/display/content.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/alacritty/src/display/content.rs b/alacritty/src/display/content.rs index 3b549992..09d27cf0 100644 --- a/alacritty/src/display/content.rs +++ b/alacritty/src/display/content.rs @@ -108,8 +108,6 @@ impl<'a> RenderableContent<'a> { } /// Assemble the information required to render the terminal cursor. - /// - /// This will return `None` when there is no cursor visible. fn renderable_cursor(&mut self, cell: &RenderableCell) -> RenderableCursor { // Cursor colors. let color = if self.terminal_content.mode.contains(TermMode::VI) {