Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e41a7bb

Browse files
committedJul 25, 2024
update annotations
1 parent 5e1c131 commit e41a7bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎stylesheet/colorizer/colorizer.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func Checkbox(val bool) string {
4545
return box(val, '[', ']')
4646
}
4747

48-
// Checkbox but with rounded edges.
48+
// Checkbox() but with rounded edges.
4949
func Radiobox(val bool) string {
5050
return box(val, '(', ')')
5151
}
@@ -82,6 +82,7 @@ func SubmitString(keybind, inputErr, result string, width int) string {
8282
)
8383
}
8484

85+
// Return the given number, styled as an index number in a list or table.
8586
func Index(i int) string {
8687
return stylesheet.IndexStyle.Render(strconv.Itoa(i))
8788
}

0 commit comments

Comments
 (0)
Please sign in to comment.