cmd/cloner: fix typo in test type's name

s/SliceContianer/SliceContainer/g

Updates #9604

Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
Brad Fitzpatrick
2023-09-30 10:09:56 -07:00
committed by Brad Fitzpatrick
parent ab810f1f6d
commit d2ea9bb1eb
3 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
//go:generate go run tailscale.com/cmd/cloner -clonefunc=true -type SliceContianer
//go:generate go run tailscale.com/cmd/cloner -clonefunc=true -type SliceContainer
package clonerex
type SliceContianer struct {
type SliceContainer struct {
Slice []*int
}