Skip to content

Commit 1ab135a

Browse files
committed
fix typo
1 parent 4c31c71 commit 1ab135a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/domain/tailnet.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ type TailnetRepository interface {
3030
DeleteTailnet(ctx context.Context, id uint64) error
3131
}
3232

33-
func (t Tailnet) GetDERPMap(ctx context.Context, fallack DefaultDERPMap) (*DERPMap, error) {
33+
func (t Tailnet) GetDERPMap(ctx context.Context, fallback DefaultDERPMap) (*DERPMap, error) {
3434
if t.DERPMap.Checksum == "" {
35-
return fallack.GetDERPMap(ctx)
35+
return fallback.GetDERPMap(ctx)
3636
} else {
3737
return &t.DERPMap, nil
3838
}

0 commit comments

Comments
 (0)