1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-26 01:04:35 +02:00

Fix typos (#297)

* fix typo in running-the-course.md

* Update modern.md
This commit is contained in:
focksor surooi 2023-01-29 19:54:51 +08:00 committed by GitHub
parent 49e06ffe03
commit 43c5344785
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ To run the course, you need to:
5. Let people solve the exercises by themselves or in small groups. Make sure to
ask people if they're stuck or if there is anything you can help with. When
you see that several people have the same problem, call it out to the class
and offer a solution, e.g., by showing people where to find the relvant
and offer a solution, e.g., by showing people where to find the relevant
information in the standard library.
6. If you don't skip the Android specific parts on Day 4, you will need an [AOSP

View File

@ -30,7 +30,7 @@ Key points:
`Option<T>` and `Result<T, E>`.
* Remind people to read the errors --- many developers have gotten used to
ignore lengthly compiler output. The Rust compiler is significantly more
ignore lengthy compiler output. The Rust compiler is significantly more
talkative than other compilers. It will often provide you with _actionable_
feedback, ready to copy-paste into your code.