Fix a few typos

It is an idea of running codespell as part of our presubmit checks.
Before enabling it for new changes, let's fix what it has found.

Signed-off-by: Andrei Vagin <avagin@gmail.com>
This commit is contained in:
Andrei Vagin
2023-10-25 12:13:42 -07:00
parent d4973670c3
commit 5f4abad306
155 changed files with 232 additions and 232 deletions
+2 -2
View File
@@ -86,7 +86,7 @@ type Queue struct {
// messages is a list of sent messages.
messages msgList
// sendTime is the last time a msgsnd was perfomed.
// sendTime is the last time a msgsnd was performed.
sendTime ktime.Time
// receiveTime is the last time a msgrcv was performed.
@@ -424,7 +424,7 @@ func (q *Queue) pop(ctx context.Context, creds *auth.Credentials, mType int64, m
msg = q.msgOfTypeLessThan(-1 * mType)
}
// If no message exists, return a blocking singal.
// If no message exists, return a blocking signal.
if msg == nil {
return nil, linuxerr.EWOULDBLOCK
}