Skip to content

Commit

Permalink
bit prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
emicklei committed Sep 30, 2024
1 parent 39a2405 commit d54a12a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- play(loop(sequence('A B C D G'))) cannot be stopped
- play(loop(sequence('A B C D G'))) cannot be stopped
- https://github.com/dedicatted/golang-cross-build-ghaction
4 changes: 2 additions & 2 deletions midi/registry_device.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func (r *DeviceRegistry) initOutputs() error {
name = ""
}
device.name = name
fmt.Printf("\toutput device %d = %s\n", each, name)
fmt.Printf("output device %d = %s\n", each, name)
}
return nil
}
Expand All @@ -160,7 +160,7 @@ func (r *DeviceRegistry) initInputs() error {
name = ""
}
device.name = name
fmt.Printf("\t input device %d = %s\n", each, name)
fmt.Printf(" input device %d = %s\n", each, name)
}
return nil
}
Expand Down

0 comments on commit d54a12a

Please sign in to comment.