Browse Source

plaintext: remove resolved TODO

Benton Edmondson 1 year ago
parent
commit
b39a406354
1 changed files with 0 additions and 1 deletions
  1. 0 1
      plaintext/plaintext.go

+ 0 - 1
plaintext/plaintext.go

@@ -50,7 +50,6 @@ func renderWithLinks(text string, width int) (string, []string) {
 	rendered := url.ReplaceAllStringFunc(text, func(link string) string {
 		links = append(links, link)
 
-		// TODO: this will be superscripted
 		return style.Link(link, len(links))
 	})
 	wrapped := ansi.Wrap(rendered, width)