Change summary 
  bug/bug.go              | 4 ++--
bug/clocks.go           | 4 ++--
repository/git.go       | 8 ++++----
repository/mock_repo.go | 4 ++--
repository/repo.go      | 8 ++++----
5 files changed, 14 insertions(+), 14 deletions(-)
 
 
  Detailed changes 
  
  
    
    @@ -197,10 +197,10 @@ func readBug(repo repository.ClockedRepo, ref string) (*Bug, error) {
 		}
 
 		// Update the clocks
-		if err := repo.CreateWitness(bug.createTime); err != nil {
+		if err := repo.WitnessCreate(bug.createTime); err != nil { 
 			return nil, errors.Wrap(err, "failed to update create lamport clock")
 		}
-		if err := repo.EditWitness(bug.editTime); err != nil {
+		if err := repo.WitnessEdit(bug.editTime); err != nil { 
 			return nil, errors.Wrap(err, "failed to update edit lamport clock")
 		}
 
 
   
  
  
    
    @@ -12,12 +12,12 @@ func Witnesser(repo repository.ClockedRepo) error {
 			return b.Err
 		}
 
-		err := repo.CreateWitness(b.Bug.createTime)
+		err := repo.WitnessCreate(b.Bug.createTime) 
 		if err != nil {
 			return err
 		}
 
-		err = repo.EditWitness(b.Bug.editTime)
+		err = repo.WitnessEdit(b.Bug.editTime) 
 		if err != nil {
 			return err
 		}
 
   
  
  
    
    @@ -461,14 +461,14 @@ func (repo *GitRepo) EditTimeIncrement() (lamport.Time, error) {
 	return repo.editClock.Increment()
 }
 
-// CreateWitness witness another create time and increment the corresponding clock
+// WitnessCreate witness another create time and increment the corresponding clock 
 // if needed.
-func (repo *GitRepo) CreateWitness(time lamport.Time) error {
+func (repo *GitRepo) WitnessCreate(time lamport.Time) error { 
 	return repo.createClock.Witness(time)
 }
 
-// EditWitness witness another edition time and increment the corresponding clock
+// WitnessEdit witness another edition time and increment the corresponding clock 
 // if needed.
-func (repo *GitRepo) EditWitness(time lamport.Time) error {
+func (repo *GitRepo) WitnessEdit(time lamport.Time) error { 
 	return repo.editClock.Witness(time)
 }
 
   
  
  
    
    @@ -236,12 +236,12 @@ func (r *mockRepoForTest) EditTimeIncrement() (lamport.Time, error) {
 	return r.editClock.Increment(), nil
 }
 
-func (r *mockRepoForTest) CreateWitness(time lamport.Time) error {
+func (r *mockRepoForTest) WitnessCreate(time lamport.Time) error { 
 	r.createClock.Witness(time)
 	return nil
 }
 
-func (r *mockRepoForTest) EditWitness(time lamport.Time) error {
+func (r *mockRepoForTest) WitnessEdit(time lamport.Time) error { 
 	r.editClock.Witness(time)
 	return nil
 }
 
   
  
  
    
    @@ -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