1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-01-31 11:01:46 +02:00

Fix some typos and wording in welcome.md (#639)

This commit is contained in:
Frances Wingerter 2023-07-06 09:38:43 +00:00 committed by GitHub
parent 7f03a67a6a
commit 9567f16d75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,10 +20,10 @@ invited to dive into one or more specialized topics:
* [Android](android.md): a half-day course on using Rust for Android platform
development (AOSP). This includes interoperability with C, C++, and Java.
* [Bare-metal](bare-metal.md): a full day class on using Rust for bare-metal
* [Bare-metal](bare-metal.md): a whole-day class on using Rust for bare-metal
(embedded) development. Both microcontrollers and application processors are
covered.
* [Concurrency](concurrency.md): a full day class on concurrency in Rust. We
* [Concurrency](concurrency.md): a whole-day class on concurrency in Rust. We
cover both classical concurrency (preemptively scheduling using threads and
mutexes) and async/await concurrency (cooperative multitasking using
futures).
@ -34,17 +34,17 @@ invited to dive into one or more specialized topics:
Rust is a large language and we won't be able to cover all of it in a few days.
Some non-goals of this course are:
* Learn how to develop macros, please see [Chapter 19.5 in the Rust
* Learning how to develop macros: please see [Chapter 19.5 in the Rust
Book](https://doc.rust-lang.org/book/ch19-06-macros.html) and [Rust by
Example](https://doc.rust-lang.org/rust-by-example/macros.html) instead.
## Assumptions
The course assumes that you already know how to program. Rust is a statically
The course assumes that you already know how to program. Rust is a statically-
typed language and we will sometimes make comparisons with C and C++ to better
explain or contrast the Rust approach.
If you know how to program in a dynamically typed language such as Python or
If you know how to program in a dynamically-typed language such as Python or
JavaScript, then you will be able to follow along just fine too.
<details>