summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2023-09-04 14:35:15 +0200
committerGitHub <noreply@github.com>2023-09-04 14:35:15 +0200
commitc57ad35e5bea45049f416f418cbcad75f2d66add (patch)
tree85d2fdb8b556ce806ca4d72e28a8de3d6b2a884c /exercises
parentf7ef198e3a3cf0bedfacd507fa1ad57699f6ac16 (diff)
parent15ae83f8681ecba76554841743c1a715001ded75 (diff)
Merge pull request #1477 from bean5/main
small changes to a few README files
Diffstat (limited to 'exercises')
-rw-r--r--exercises/threads/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/threads/README.md b/exercises/threads/README.md
index d086694..dbe6664 100644
--- a/exercises/threads/README.md
+++ b/exercises/threads/README.md
@@ -1,6 +1,6 @@
# Threads
-In most current operating systems, an executed program’s code is run in a process, and the operating system manages multiple processes at once.
+In most current operating systems, an executed program's code is run in a process, and the operating system manages multiple processes at once.
Within your program, you can also have independent parts that run simultaneously. The features that run these independent parts are called threads.
## Further information