From 0980211db2b0bd5df8d899f58a580476f2348c2c Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Tue, 25 Jul 2023 15:04:32 +0200 Subject: [PATCH] Introduce Rust Fundamentals on welcome page (#1029) The split between Day 1 to 3 and the deep dives was never explicitly explained. --- src/welcome.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/welcome.md b/src/welcome.md index a180a338..847bb752 100644 --- a/src/welcome.md +++ b/src/welcome.md @@ -4,9 +4,9 @@ [![GitHub contributors](https://img.shields.io/github/contributors/google/comprehensive-rust?style=flat-square)](https://github.com/google/comprehensive-rust/graphs/contributors) [![GitHub stars](https://img.shields.io/github/stars/google/comprehensive-rust?style=flat-square)](https://github.com/google/comprehensive-rust/stargazers) -This is a three day Rust course developed by the Android team. The course covers +This is a free 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. +and error handling. The goal of the course is to teach you Rust. We assume you don't know anything about Rust and hope to: @@ -15,8 +15,9 @@ about Rust and hope to: * Enable you to modify existing programs and write new programs in Rust. * Show you common Rust idioms. -The first three days show you the fundamentals of Rust. Following this, you're -invited to dive into one or more specialized topics: +We call the first three course days Rust Fundamentals. + +Building on this, you're 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.