From 35df422ec7a6d7196519af43c1c161454eab11a9 Mon Sep 17 00:00:00 2001 From: Chris Pick Date: Mon, 3 Jul 2023 14:11:59 -0400 Subject: [PATCH] Remove typo in hyperlink URL The trailing 'A' lead to a 404, remove it. --- termwiz/src/hyperlink.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/termwiz/src/hyperlink.rs b/termwiz/src/hyperlink.rs index 7f1cea76b08..159298f7cde 100644 --- a/termwiz/src/hyperlink.rs +++ b/termwiz/src/hyperlink.rs @@ -1,6 +1,6 @@ //! Handling hyperlinks. //! This gist describes an escape sequence for explicitly managing hyperlinks: -//! +//! //! We use that as the foundation of our hyperlink support, and the game //! plan is to then implicitly enable the hyperlink attribute for a cell //! as we recognize linkable input text during print() processing.