aboutsummaryrefslogtreecommitdiffstats
path: root/entity
diff options
context:
space:
mode:
Diffstat (limited to 'entity')
-rw-r--r--entity/dag/operation_pack.go2
-rw-r--r--entity/err.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/entity/dag/operation_pack.go b/entity/dag/operation_pack.go
index 00cf2557..a436fd33 100644
--- a/entity/dag/operation_pack.go
+++ b/entity/dag/operation_pack.go
@@ -188,7 +188,7 @@ func readOperationPack(def Definition, repo repository.RepoData, resolver identi
}
}
if version == 0 {
- return nil, entity.NewErrUnknowFormat(def.FormatVersion)
+ return nil, entity.NewErrUnknownFormat(def.FormatVersion)
}
if version != def.FormatVersion {
return nil, entity.NewErrInvalidFormat(version, def.FormatVersion)
diff --git a/entity/err.go b/entity/err.go
index 9f7f5a1a..408e27b4 100644
--- a/entity/err.go
+++ b/entity/err.go
@@ -43,7 +43,7 @@ func NewErrInvalidFormat(version uint, expected uint) *ErrInvalidFormat {
}
}
-func NewErrUnknowFormat(expected uint) *ErrInvalidFormat {
+func NewErrUnknownFormat(expected uint) *ErrInvalidFormat {
return &ErrInvalidFormat{
version: 0,
expected: expected,