From 239f81454e8622c276738aac261399d8661fffbf Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 12 Dec 2020 06:40:12 +1100 Subject: [PATCH] docs: fix simple typo, schduler -> scheduler There is a small typo in src/lthread_int.h. Should read `scheduler` rather than `schduler`. --- src/lthread_int.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lthread_int.h b/src/lthread_int.h index 52475ce..46314fe 100644 --- a/src/lthread_int.h +++ b/src/lthread_int.h @@ -134,7 +134,7 @@ struct lthread { int ret; int err; } io; - /* lthread_compute schduler - when running in compute block */ + /* lthread_compute scheduler - when running in compute block */ struct lthread_compute_sched *compute_sched; int ready_fds; /* # of fds that are ready. for poll(2) */ struct pollfd *pollfds;