aboutsummaryrefslogtreecommitdiffstats
path: root/repository/repo.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-11-19 00:27:40 +0100
committerMichael Muré <batolettre@gmail.com>2019-11-19 00:27:40 +0100
commita9b32e6bdaa610e2244816618a316bcdf53545e6 (patch)
tree579e49e7972dd0b1719227eee75a767dba92208d /repository/repo.go
parent0b2a99ab965a1a90e138cc26f12c160a0dac60c2 (diff)
downloadgit-bug-a9b32e6bdaa610e2244816618a316bcdf53545e6.tar.gz
repo: esthetism rename
Diffstat (limited to 'repository/repo.go')
-rw-r--r--repository/repo.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/repository/repo.go b/repository/repo.go
index e8c67a5e..71bd7a8e 100644
--- a/repository/repo.go
+++ b/repository/repo.go
@@ -111,13 +111,13 @@ type ClockedRepo interface {
// EditTimeIncrement increment the edit clock and return the new value.
EditTimeIncrement() (lamport.Time, error)
- // CreateWitness witness another create time and increment the corresponding
+ // WitnessCreate witness another create time and increment the corresponding
// clock if needed.
- CreateWitness(time lamport.Time) error
+ WitnessCreate(time lamport.Time) error
- // EditWitness witness another edition time and increment the corresponding
+ // WitnessEdit witness another edition time and increment the corresponding
// clock if needed.
- EditWitness(time lamport.Time) error
+ WitnessEdit(time lamport.Time) error
}
// Witnesser is a function that will initialize the clocks of a repo