*: misc typos and go vet fixes

release-3.0
James Shubin 2016-06-15 04:07:06 -04:00 committed by Gyu-Ho Lee
parent 8d259d3cf1
commit 6480066054
2 changed files with 3 additions and 3 deletions

View File

@ -354,8 +354,8 @@ func (l *lessor) recvKeepAlive(resp *pb.LeaseKeepAliveResponse) {
}
}
// deadlineLoop reaps any keep alive channels that have not recieved a resposne within
// the lease TTL
// deadlineLoop reaps any keep alive channels that have not received a response
// within the lease TTL
func (l *lessor) deadlineLoop() {
for {
select {

View File

@ -27,7 +27,7 @@ func preallocExtend(f *os.File, sizeInBytes int64) error {
if err != nil {
errno, ok := err.(syscall.Errno)
// not supported; fallback
// fallocate EINTRs frequently in some enviroments; fallback
// fallocate EINTRs frequently in some environments; fallback
if ok && (errno == syscall.ENOTSUP || errno == syscall.EINTR) {
return preallocExtendTrunc(f, sizeInBytes)
}