From 43c5344785ef3d50d7f962972502ebceb19f6000 Mon Sep 17 00:00:00 2001 From: focksor surooi Date: Sun, 29 Jan 2023 19:54:51 +0800 Subject: [PATCH] Fix typos (#297) * fix typo in running-the-course.md * Update modern.md --- src/running-the-course.md | 2 +- src/why-rust/modern.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/running-the-course.md b/src/running-the-course.md index 2ce11327..50f0f489 100644 --- a/src/running-the-course.md +++ b/src/running-the-course.md @@ -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 diff --git a/src/why-rust/modern.md b/src/why-rust/modern.md index 90422fc5..6d1eda75 100644 --- a/src/why-rust/modern.md +++ b/src/why-rust/modern.md @@ -30,7 +30,7 @@ Key points: `Option` and `Result`. * 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.