From ce8b6ede3477b63023dc458ac43bb798536d460e Mon Sep 17 00:00:00 2001
From: antirez <antirez@gmail.com>
Date: Fri, 5 Oct 2018 18:29:23 +0200
Subject: [PATCH] Fix typo in design comment of bio.c.

---
 src/bio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bio.c b/src/bio.c
index 0e15c416..2af68457 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