nits: missed a couple of comments keeping lint happy

This commit is contained in:
Zellyn Hunter 2021-08-01 13:22:04 -04:00
parent c2dd6362de
commit b264fe8e96
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ func (d DecodeCmd) Help() string {
diskii dump dos33master.dsk HELLO | diskii applesoft decode -`
}
// Run the decode command.
// Run the `decode` command.
func (d *DecodeCmd) Run(globals *types.Globals) error {
contents, err := helpers.FileContentsOrStdIn(d.Filename)
if err != nil {

View File

@ -1,7 +1,7 @@
// Package data is a bunch of go:embed embedded files.
package data
import _ "embed"
import _ "embed" // Mark this file as using embeds.
// DOS33masterDSK is a DOS 3.3 Master Disk image.
//go:embed disks/dos33master.dsk