summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorbean5 <2052646+bean5@users.noreply.github.com>2023-04-13 19:39:57 -0600
committerbean5 <2052646+bean5@users.noreply.github.com>2023-04-13 20:32:18 -0600
commit15ae83f8681ecba76554841743c1a715001ded75 (patch)
tree4637e10fedbe3c3f86f1485efaa2421b2f537830 /exercises
parente6b1ef20496ef2287442c4abef130ae835395a23 (diff)
docs: Replace apostrophe (for consistency with other 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