Fix typos

Signed-off-by: co63oc <co63oc@users.noreply.github.com>
This commit is contained in:
co63oc
2025-04-07 14:01:52 +08:00
parent 8efc528b84
commit 7659798f80
5 changed files with 6 additions and 6 deletions

View File

@@ -202,7 +202,7 @@ func ParseAttests(in []string) ([]*controllerapi.Attest, error) {
func ConvertAttests(in []*Attest) ([]*controllerapi.Attest, error) {
out := make([]*controllerapi.Attest, 0, len(in))
// Check for dupplicate attestations while we convert them
// Check for duplicate attestations while we convert them
// to the controller API.
found := map[string]struct{}{}
for _, attest := range in {

View File

@@ -189,7 +189,7 @@ func TestMuxIO(t *testing.T) {
}
}
type instruction func(m *MuxIO) (intput string, writeBackView string)
type instruction func(m *MuxIO) (input string, writeBackView string)
func input(s string) instruction {
return func(m *MuxIO) (string, string) {