chore: lower capitalize

This commit is contained in:
2026-03-30 23:20:40 +02:00
parent 9b2eefcc52
commit 36e4b4af75
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -36,7 +36,7 @@ func MakeInput(targEntry *widget.Entry, book *string) *fyne.Container {
)
bookList.OnSelected = func(id widget.ListItemID) {
*book = availBooks[id]
log.Printf("Updated selected book to: %s", *book)
log.Printf("updated selected book to: %s", *book)
}
bookBox := container.NewBorder(
widget.NewLabel("Available Books"), // top
@@ -54,7 +54,7 @@ func MakeInput(targEntry *widget.Entry, book *string) *fyne.Container {
func MakeFooter(targEntry *widget.Entry, book *string, app fyne.App) *fyne.Container {
actionBtn := widget.NewButton("Execute", func() {
log.Println("Beginning execution with external binary")
log.Println("beginning execution with external binary")
ok, path := runner.FindMeshbookBinary()
if !ok {
@@ -73,7 +73,7 @@ func MakeFooter(targEntry *widget.Entry, book *string, app fyne.App) *fyne.Conta
)
cancelBtn := widget.NewButton("Exit", func() {
log.Println("Quitting")
log.Println("quitting")
app.Quit()
})
cancelWrap := container.NewGridWrap(
+1 -1
View File
@@ -15,7 +15,7 @@ func PrepareEnvironment() (bool, error) {
return ok, err
}
log.Println("Validated or made state compliant")
log.Println("validated or made state compliant")
return true, nil
}