Skip to content

Commit

Permalink
Make page title more specific (#2405)
Browse files Browse the repository at this point in the history
Naming the slide “Bare-Metal Android” avoids an annoying situation
when searching: before, searching for “android” would list this slide
as a top hit because it matches the search term precisely. This meant
that the whole Rust in Android section course was harder to find.

With this change, the “Welcome to Rust in Android” page becomes easier
to find.
  • Loading branch information
mgeisler authored Nov 19, 2024
1 parent 6148cae commit 088169b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@
- [`buddy_system_allocator`](bare-metal/useful-crates/buddy_system_allocator.md)
- [`tinyvec`](bare-metal/useful-crates/tinyvec.md)
- [`spin`](bare-metal/useful-crates/spin.md)
- [Android](bare-metal/android.md)
- [Bare-Metal on Android](bare-metal/android.md)
- [`vmbase`](bare-metal/android/vmbase.md)
- [Exercises](exercises/bare-metal/afternoon.md)
- [RTC Driver](exercises/bare-metal/rtc.md)
Expand Down
2 changes: 1 addition & 1 deletion src/bare-metal/android.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Android
# Bare-Metal on Android

To build a bare-metal Rust binary in AOSP, you need to use a `rust_ffi_static`
Soong rule to build your Rust code, then a `cc_binary` with a linker script to
Expand Down

0 comments on commit 088169b

Please sign in to comment.