Skip to content

Commit f78166f

Browse files
committed
Updated README
1 parent 42c1b9d commit f78166f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Modern C++ thread-pool scheduler that distributes work across a fixed set of `st
88

99
## Description
1010

11-
The scheduler exposes a minimal API—construct it with the desired number of worker threads and call `submit()` with any callable. Pending tasks live in a mutex-protected queue, while workers block on a condition variable until work arrives or shutdown is requested. The design is compact enough for teaching and prototyping but still follows best practices for synchronization and RAII-based shutdown.
11+
The scheduler exposes a minimal API. Construct it with the desired number of worker threads and call `submit()` with any callable. Pending tasks live in a mutex-protected queue, while workers block on a condition variable until work arrives or shutdown is requested. The design is compact enough for teaching and prototyping but still follows best practices for synchronization and RAII-based shutdown.
1212

1313
## Motivation
1414

0 commit comments

Comments
 (0)