1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 13:16:39 +03:00

Remove typo in hyperlink URL

The trailing 'A' lead to a 404, remove it.
This commit is contained in:
Chris Pick 2023-07-03 14:11:59 -04:00 committed by Wez Furlong
parent 71dcb07b89
commit 35df422ec7

View File

@ -1,6 +1,6 @@
//! Handling hyperlinks.
//! This gist describes an escape sequence for explicitly managing hyperlinks:
//! <https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5fedaA>
//! <https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda>
//! 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.