aboutsummaryrefslogtreecommitdiffstats
path: root/entity/dag/entity.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2022-08-25 11:19:43 +0200
committerMichael Muré <batolettre@gmail.com>2022-08-25 11:20:36 +0200
commit4c074099b8f305758ee88b319c7e0d32c2412038 (patch)
treeee1817f5101b3fbabfbaa3df2cba81330d8b8ec0 /entity/dag/entity.go
parent5c91174a84592b027c1b432a72ebf2974ec0e4c5 (diff)
downloadgit-bug-4c074099b8f305758ee88b319c7e0d32c2412038.tar.gz
generalized interface for an Entity
Diffstat (limited to 'entity/dag/entity.go')
-rw-r--r--entity/dag/entity.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/entity/dag/entity.go b/entity/dag/entity.go
index 8b561274..ca674ad7 100644
--- a/entity/dag/entity.go
+++ b/entity/dag/entity.go
@@ -361,7 +361,7 @@ func (e *Entity) Validate() error {
return fmt.Errorf("entity has no operations")
}
- // check if each operations are valid
+ // check if each operation are valid
for _, op := range e.ops {
if err := op.Validate(); err != nil {
return err