diff --git a/src/0_background_information.md b/src/0_background_information.md index 9dbed29..a897785 100644 --- a/src/0_background_information.md +++ b/src/0_background_information.md @@ -29,7 +29,7 @@ The runtime we use to handle concurrency for us is the operating system itself. **Drawbacks:** - OS level threads come with a rather large stack. If you have many tasks - waiting simultaneously (like you would in a web-server under heavy load) you'll + waiting simultaneously (like you would in a web server under heavy load) you'll run out of memory pretty fast. - There are a lot of syscalls involved. This can be pretty costly when the number of tasks is high.