*: regenerate proto with typo fix "acquisition"

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyuho Lee
2018-02-12 09:25:26 -08:00
parent 9c6d930565
commit a9804cdf75
4 changed files with 4 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ type LockRequest struct {
// lease is the ID of the lease that will be attached to ownership of the
// lock. If the lease expires or is revoked and currently holds the lock,
// the lock is automatically released. Calls to Lock with the same lease will
// be treated as a single acquistion; locking twice with the same lease is a
// be treated as a single acquisition; locking twice with the same lease is a
// no-op.
Lease int64 `protobuf:"varint,2,opt,name=lease,proto3" json:"lease,omitempty"`
}

View File

@@ -42,7 +42,7 @@ message LockRequest {
// lease is the ID of the lease that will be attached to ownership of the
// lock. If the lease expires or is revoked and currently holds the lock,
// the lock is automatically released. Calls to Lock with the same lease will
// be treated as a single acquistion; locking twice with the same lease is a
// be treated as a single acquisition; locking twice with the same lease is a
// no-op.
int64 lease = 2;
}