1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-26 19:23:22 +02:00

Corrected 1 or 2 typos

missing verb :
"The goal of the course to teach you Rust." -> "The goal of the course is to teach you Rust."

missing of ? :
"to cover all it" -> "to cover all of it"
for this one, I'm not a native english speaker but it seems more correct to me. I'll let you check :)
This commit is contained in:
Laurent Lyaudet 2022-12-22 18:33:02 +01:00 committed by GitHub
parent 15b8ca8a05
commit 1315481e69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ This is a four day Rust course developed by the Android team. The course covers
the full spectrum of Rust, from basic syntax to advanced topics like generics
and error handling. It also includes Android-specific content on the last day.
The goal of the course to teach you Rust. We assume you don't know anything
The goal of the course is to teach you Rust. We assume you don't know anything
about Rust and hope to:
* Give you a comprehensive understanding of the Rust syntax and language.
@ -19,7 +19,7 @@ On Day 4, we will cover Android-specific things such as:
## Non-Goals
Rust is a large language and we won't be able to cover all it in a few days.
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 use async Rust --- we'll only talk a bit about async Rust when