Skip to content

Commit 240fee6

Browse files
committed
chore(render): gofmt alignment pass
1 parent 1eaf825 commit 240fee6

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

internal/render/render.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ const (
8585
// The zero value is usable but won't produce any output — call New()
8686
// to create a properly initialized Renderer.
8787
type Renderer struct {
88-
w io.Writer
89-
color bool
90-
model string
88+
w io.Writer
89+
color bool
90+
model string
9191
skillVerbose bool // show skill notifications (auto-load, save, suggest, etc.)
9292
}
9393

internal/render/render_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -681,12 +681,12 @@ func TestRenderer_SkillDeleted(t *testing.T) {
681681
}
682682

683683
func TestRenderer_SkillEvents_NilSafe(t *testing.T) {
684-
var r *Renderer // nil
685-
r.SkillLoaded([]string{"test"}) // should not panic
684+
var r *Renderer // nil
685+
r.SkillLoaded([]string{"test"}) // should not panic
686686
r.SkillAutoLoaded([]string{"test"}) // should not panic
687-
r.SkillSuggested("x", "h") // should not panic
688-
r.SkillSaved("x") // should not panic
689-
r.SkillDeleted("x") // should not panic
687+
r.SkillSuggested("x", "h") // should not panic
688+
r.SkillSaved("x") // should not panic
689+
r.SkillDeleted("x") // should not panic
690690
}
691691

692692
func TestRenderer_SkillEvents_NoColor(t *testing.T) {

0 commit comments

Comments
 (0)