aboutsummaryrefslogtreecommitdiffstats
path: root/entity/dag
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-02-14 12:24:40 +0100
committerMichael Muré <batolettre@gmail.com>2021-02-14 12:24:40 +0100
commit1ced77af1a4bdbaa212a74bf0c56b2b81cdc5bd2 (patch)
treee19a0b4ce8c322f2378b251e38ef6c3ffa2a7646 /entity/dag
parentd0d7be8db010e2c68c98d0a34387e4fac0c4d6ee (diff)
downloadgit-bug-1ced77af1a4bdbaa212a74bf0c56b2b81cdc5bd2.tar.gz
fix merge
Diffstat (limited to 'entity/dag')
-rw-r--r--entity/dag/operation_pack.go2
1 files changed, 1 insertions, 1 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)