Skip to content

Commit e0c6d6d

Browse files
committed
chore: fix typo
1 parent f090586 commit e0c6d6d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

internal/bootstrap/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
type ArtifactVersion struct {
1212
Step string `json:"step"` // StepRuned | StepRuneMCP
1313
Installed string `json:"installed"`
14-
Available string `json:"available"` // available verions from updated manifest
14+
Available string `json:"available"` // available versions from updated manifest
1515
Outdated bool `json:"outdated"`
1616
}
1717

internal/bootstrap/update_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ func TestCheckUpdate_NotInstalled(t *testing.T) {
144144
}
145145
}
146146

147-
func TestUpdateArtifact_UpdateSingleArifact(t *testing.T) {
147+
func TestUpdateArtifact_UpdateSingleArtifact(t *testing.T) {
148148
rune, _ := setRealms(t)
149149
t.Setenv("RUNE_MANIFEST", "")
150150
fx := newFixture(t)

internal/supervisor/supervisor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type Config struct {
1717
RunedArgs []string
1818
LogPath string // default: ~/.runed/logs/daemon.log
1919
LockPath string // default: ~/.runed/supervisor.lock
20-
SocketPath string // deafult: ~/.runed/supervisor.sock; empty = no control channel
20+
SocketPath string // default: ~/.runed/supervisor.sock; empty = no control channel
2121

2222
BackoffSchedule []time.Duration // nil for DefaultBackoff
2323
MaxCrashes int // 0 for DefaultMaxCrashes

0 commit comments

Comments
 (0)