Skip to content

Commit c57ad35

Browse files
authored
Merge pull request #1477 from bean5/main
small changes to a few README files
2 parents f7ef198 + 15ae83f commit c57ad35

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Alternatively, for a first-time Rust learner, there are several other resources:
1818
_Note: If you're on MacOS, make sure you've installed Xcode and its developer tools by typing `xcode-select --install`._
1919
_Note: If you're on Linux, make sure you've installed gcc. Deb: `sudo apt install gcc`. Yum: `sudo yum -y install gcc`._
2020

21-
You will need to have Rust installed. You can get it by visiting https://rustup.rs. This'll also install Cargo, Rust's package/project manager.
21+
You will need to have Rust installed. You can get it by visiting <https://rustup.rs>. This'll also install Cargo, Rust's package/project manager.
2222

2323
## MacOS/Linux
2424

@@ -27,6 +27,7 @@ Just run:
2727
```bash
2828
curl -L https://raw.githubusercontent.com/rust-lang/rustlings/main/install.sh | bash
2929
```
30+
3031
Or if you want it to be installed to a different path:
3132

3233
```bash

exercises/threads/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Threads
22

3-
In most current operating systems, an executed programs code is run in a process, and the operating system manages multiple processes at once.
3+
In most current operating systems, an executed program's code is run in a process, and the operating system manages multiple processes at once.
44
Within your program, you can also have independent parts that run simultaneously. The features that run these independent parts are called threads.
55

66
## Further information

0 commit comments

Comments
 (0)