From e332d0e5d7bebeef88ef14362812cfa70a7b2ce1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Thu, 26 May 2016 22:15:28 +0200 Subject: [PATCH] Fix a typo --- signature/policy_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signature/policy_config.go b/signature/policy_config.go index f4af51d4..fd634783 100644 --- a/signature/policy_config.go +++ b/signature/policy_config.go @@ -363,7 +363,7 @@ func (kt *sbKeyType) UnmarshalJSON(data []byte) error { // newPRSignedBaseLayer is NewPRSignedBaseLayer, except it returns the private type. func newPRSignedBaseLayer(baseLayerIdentity PolicyReferenceMatch) (*prSignedBaseLayer, error) { if baseLayerIdentity == nil { - return nil, InvalidPolicyFormatError("baseLayerIdenitty not specified") + return nil, InvalidPolicyFormatError("baseLayerIdentity not specified") } return &prSignedBaseLayer{ prCommon: prCommon{Type: prTypeSignedBaseLayer},