diff options
Diffstat (limited to 'bug/operation.go')
-rw-r--r-- | bug/operation.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bug/operation.go b/bug/operation.go index 4c6f2e5a..d7d5af51 100644 --- a/bug/operation.go +++ b/bug/operation.go @@ -35,7 +35,7 @@ type Operation interface { // GetFiles return the files needed by this operation GetFiles() []git.Hash // Apply the operation to a Snapshot to create the final state - Apply(snapshot Snapshot) Snapshot + Apply(snapshot *Snapshot) // Validate check if the operation is valid (ex: a title is a single line) Validate() error // SetMetadata store arbitrary metadata about the operation |