diff --git a/src/exercises/bare-metal/compass.md b/src/exercises/bare-metal/compass.md index ec3e5cf3..220c8f46 100644 --- a/src/exercises/bare-metal/compass.md +++ b/src/exercises/bare-metal/compass.md @@ -23,7 +23,7 @@ Hints: Download the [exercise template](../../comprehensive-rust-exercises.zip) and look in the `compass` directory for the following files. -`src/main.rs`: +_src/main.rs_: @@ -40,7 +40,7 @@ use microbit::{hal::uarte::{Baudrate, Parity, Uarte}, Board}; } ``` -`Cargo.toml` (you shouldn't need to change this): +_Cargo.toml_ (you shouldn't need to change this): @@ -48,7 +48,7 @@ use microbit::{hal::uarte::{Baudrate, Parity, Uarte}, Board}; {{#include compass/Cargo.toml}} ``` -`Embed.toml` (you shouldn't need to change this): +_Embed.toml_ (you shouldn't need to change this): @@ -56,7 +56,7 @@ use microbit::{hal::uarte::{Baudrate, Parity, Uarte}, Board}; {{#include compass/Embed.toml}} ``` -`.cargo/config.toml` (you shouldn't need to change this): +_.cargo/config.toml_ (you shouldn't need to change this): diff --git a/src/exercises/bare-metal/rtc.md b/src/exercises/bare-metal/rtc.md index 609f697a..76bfb2f6 100644 --- a/src/exercises/bare-metal/rtc.md +++ b/src/exercises/bare-metal/rtc.md @@ -16,7 +16,7 @@ should write a driver for it. Download the [exercise template](../../comprehensive-rust-exercises.zip) and look in the `rtc` directory for the following files. -`src/main.rs`: +_src/main.rs_: @@ -34,7 +34,7 @@ directory for the following files. {{#include rtc/src/main.rs:main_end}} ``` -`src/exceptions.rs` (you should only need to change this for the 3rd part of the exercise): +_src/exceptions.rs_ (you should only need to change this for the 3rd part of the exercise): @@ -42,7 +42,7 @@ directory for the following files. {{#include rtc/src/exceptions.rs}} ``` -`src/logger.rs` (you shouldn't need to change this): +_src/logger.rs_ (you shouldn't need to change this): @@ -50,7 +50,7 @@ directory for the following files. {{#include rtc/src/logger.rs}} ``` -`src/pl011.rs` (you shouldn't need to change this): +_src/pl011.rs_ (you shouldn't need to change this): @@ -58,7 +58,7 @@ directory for the following files. {{#include rtc/src/pl011.rs}} ``` -`Cargo.toml` (you shouldn't need to change this): +_Cargo.toml_ (you shouldn't need to change this): @@ -66,7 +66,7 @@ directory for the following files. {{#include rtc/Cargo.toml}} ``` -`build.rs` (you shouldn't need to change this): +_build.rs_ (you shouldn't need to change this): @@ -74,7 +74,7 @@ directory for the following files. {{#include rtc/build.rs}} ``` -`entry.S` (you shouldn't need to change this): +_entry.S_ (you shouldn't need to change this): @@ -82,7 +82,7 @@ directory for the following files. {{#include rtc/entry.S}} ``` -`exceptions.S` (you shouldn't need to change this): +_exceptions.S_ (you shouldn't need to change this): @@ -90,7 +90,7 @@ directory for the following files. {{#include rtc/exceptions.S}} ``` -`idmap.S` (you shouldn't need to change this): +_idmap.S_ (you shouldn't need to change this): @@ -98,7 +98,7 @@ directory for the following files. {{#include rtc/idmap.S}} ``` -`image.ld` (you shouldn't need to change this): +_image.ld_ (you shouldn't need to change this): @@ -106,7 +106,7 @@ directory for the following files. {{#include rtc/image.ld}} ``` -`Makefile` (you shouldn't need to change this): +_Makefile_ (you shouldn't need to change this): @@ -114,7 +114,7 @@ directory for the following files. {{#include rtc/Makefile}} ``` -`.cargo/config.toml` (you shouldn't need to change this): +_.cargo/config.toml_ (you shouldn't need to change this): diff --git a/src/exercises/concurrency/chat-app.md b/src/exercises/concurrency/chat-app.md index 96f11ac7..d5f33bdc 100644 --- a/src/exercises/concurrency/chat-app.md +++ b/src/exercises/concurrency/chat-app.md @@ -12,7 +12,7 @@ server. Create a new Cargo project and add the following dependencies: -`Cargo.toml`: +_Cargo.toml_: @@ -47,7 +47,7 @@ Copy the following server and client code into `src/bin/server.rs` and `src/bin/client.rs`, respectively. Your task is to complete these files as described below. -`src/bin/server.rs`: +_src/bin/server.rs_: @@ -61,7 +61,7 @@ described below. {{#include chat-async/src/bin/server.rs:main}} ``` -`src/bin/client.rs`: +_src/bin/client.rs_: