Skip to content
This repository was archived by the owner on Sep 18, 2025. It is now read-only.

Commit 2afa489

Browse files
meowgorithmkujtimiihoxha
authored andcommitted
fix(logo): un-expose the renderer for the letter S
1 parent 866e0e8 commit 2afa489

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

internal/tui/components/logo/logo.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func Render(version string, compact bool, o Opts) string {
4242
}
4343

4444
// Title.
45-
crush := renderWord(1, !compact, letterC, letterR, letterU, LetterS, letterH)
45+
crush := renderWord(1, !compact, letterC, letterR, letterU, letterS, letterH)
4646
crushWidth := lipgloss.Width(crush)
4747
b := new(strings.Builder)
4848
for r := range strings.SplitSeq(crush, "\n") {
@@ -216,10 +216,10 @@ func letterR(stretch bool) string {
216216
)
217217
}
218218

219-
// LetterS renders the letter S in a stylized way. It takes an integer that
219+
// letterS renders the letter S in a stylized way. It takes an integer that
220220
// determines how many cells to stretch the letter. If the stretch is less than
221221
// 1, it defaults to no stretching.
222-
func LetterS(stretch bool) string {
222+
func letterS(stretch bool) string {
223223
// Here's what we're making:
224224
//
225225
// ▄▀▀▀▀

0 commit comments

Comments
 (0)