From c76667968705ffff8d39e07f3746d3ad89dc22e9 Mon Sep 17 00:00:00 2001 From: Ben Toogood <ben@micro.mu> Date: Wed, 1 Apr 2020 17:22:01 +0100 Subject: [PATCH] Fix typo --- auth/default.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/default.go b/auth/default.go index d319f793..20f16a4f 100644 --- a/auth/default.go +++ b/auth/default.go @@ -40,7 +40,7 @@ func (n *noop) Generate(id string, opts ...GenerateOption) (*Account, error) { return &Account{ ID: id, Roles: options.Roles, - Secret: options.Secret,s + Secret: options.Secret, Metadata: options.Metadata, }, nil }