From 61407e60797d21f72702ffa9ccaf0b597faa462d Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Tue, 15 Oct 2024 16:14:25 +0200 Subject: [PATCH] =?UTF-8?q?Avoid=20uppercase=20=E2=80=9CHINT=E2=80=9D=20(#?= =?UTF-8?q?2428)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don’t have a convention of all-capital headings. However, we can have do a similar convention with a block quotes (see README and TRANSLATIONS). Reviewed-by: Martin Geisler --- src/error-handling/exercise.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/error-handling/exercise.md b/src/error-handling/exercise.md index 16309dc6..84159db3 100644 --- a/src/error-handling/exercise.md +++ b/src/error-handling/exercise.md @@ -12,9 +12,9 @@ error handling and propagate errors to a return from `main`. Feel free to use [`thiserror`]: https://docs.rs/thiserror [`anyhow`]: https://docs.rs/anyhow -HINT: start by fixing error handling in the `parse` function. Once that is -working correctly, update `Tokenizer` to implement -`Iterator>` and handle that in the parser. +> **Hint:** start by fixing error handling in the `parse` function. Once that is +> working correctly, update `Tokenizer` to implement +> `Iterator>` and handle that in the parser. ```rust,editable {{#include exercise.rs:types}}