From b264fe8e964a72f87e6499b36bcc14d60435988e Mon Sep 17 00:00:00 2001 From: Zellyn Hunter Date: Sun, 1 Aug 2021 13:22:04 -0400 Subject: [PATCH] nits: missed a couple of comments keeping lint happy --- cmd/applesoft.go | 2 +- data/data.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/applesoft.go b/cmd/applesoft.go index ce79470..321f65a 100644 --- a/cmd/applesoft.go +++ b/cmd/applesoft.go @@ -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 { diff --git a/data/data.go b/data/data.go index a32144a..1db16d4 100644 --- a/data/data.go +++ b/data/data.go @@ -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