From bbbc0601a9d1d7638eb747b8ad4335b6aae0bc63 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Thu, 11 May 2023 14:37:35 +0200 Subject: [PATCH] Fix broken README links (#629) Links inside the course are automatically turned into `.html` by mdbook, but this is a regular README and so we need proper links. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 85680977..b9d111d6 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,9 @@ course developed by the Android team. The course covers all aspects of Rust, from basic syntax to generics and error handling. It also includes deep dives on [Android], [bare-metal], and [concurrency]. -[Android]: https://google.github.io/comprehensive-rust/android.md -[bare-metal]: https://google.github.io/comprehensive-rust/bare-metal.md -[concurrency]: https://google.github.io/comprehensive-rust/concurrency.md +[Android]: https://google.github.io/comprehensive-rust/android.html +[bare-metal]: https://google.github.io/comprehensive-rust/bare-metal.html +[concurrency]: https://google.github.io/comprehensive-rust/concurrency.html Read the course at **https://google.github.io/comprehensive-rust/**.