1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-03 01:56:12 +02:00

Add suggestion to use rustup doc (#770)

Suggest to use `rustup doc std::fmt` to open the documentation for `std::fmt`.
This commit is contained in:
Andreas Hindborg 2023-06-11 00:01:57 +02:00 committed by GitHub
parent 4074b72df8
commit 56c1a6e55e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,5 +40,7 @@ Key points:
* Show the students the standard library, show them how to search for `std::fmt`
which has the rules of the formatting mini-language. It's important that the
students become familiar with searching in the standard library.
* In a shell `rustup doc std::fmt` will open a browser on the local std::fmt documentation
</details>