1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-08-08 22:36:55 +02:00

Merge pull request #1477 from bean5/main

small changes to a few README files
This commit is contained in:
liv
2023-09-04 14:35:15 +02:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Threads
In most current operating systems, an executed programs 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