summaryrefslogtreecommitdiff
path: root/src/bio.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2018-10-05 18:29:23 +0200
committerantirez <antirez@gmail.com>2018-10-05 18:29:23 +0200
commitce8b6ede3477b63023dc458ac43bb798536d460e (patch)
tree9d78920a8c806625f60d528364637bc94ff1087d /src/bio.c
parent68c0e6e3313a5d76a6f352f8e9cd0376d9d52737 (diff)
downloadredis-ce8b6ede3477b63023dc458ac43bb798536d460e.tar.gz
Fix typo in design comment of bio.c.
Diffstat (limited to 'src/bio.c')
-rw-r--r--src/bio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bio.c b/src/bio.c
index 0e15c416d..2af684570 100644
--- a/src/bio.c
+++ b/src/bio.c
@@ -17,7 +17,7 @@
*
* The design is trivial, we have a structure representing a job to perform
* and a different thread and job queue for every job type.
- * Every thread wait for new jobs in its queue, and process every job
+ * Every thread waits for new jobs in its queue, and process every job
* sequentially.
*
* Jobs of the same type are guaranteed to be processed from the least