From 4eef2b2c344e9be8c7a4641165ccb0b57915a660 Mon Sep 17 00:00:00 2001 From: Thandile Nododile Date: Tue, 20 Oct 2020 05:58:11 +0200 Subject: [PATCH] Referencing to Appendix B Making reference to Appendix B for continuous reading without having to look for Appendix B, this resembles what has been done in the previous sections. :+1: --- src/ch03-02-data-types.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ch03-02-data-types.md b/src/ch03-02-data-types.md index 62111c7241..455a8a387e 100644 --- a/src/ch03-02-data-types.md +++ b/src/ch03-02-data-types.md @@ -145,7 +145,7 @@ The following code shows how you’d use each one in a `let` statement: ``` Each expression in these statements uses a mathematical operator and evaluates -to a single value, which is then bound to a variable. Appendix B contains a +to a single value, which is then bound to a variable. [Appendix B][appendix_b] contains a list of all operators that Rust provides. #### The Boolean Type @@ -348,3 +348,4 @@ ch02-00-guessing-game-tutorial.html#comparing-the-guess-to-the-secret-number [strings]: ch08-02-strings.html#storing-utf-8-encoded-text-with-strings [unrecoverable-errors-with-panic]: ch09-01-unrecoverable-errors-with-panic.html [wrapping]: ../std/num/struct.Wrapping.html +[appendix_b]: appendix-02-operators.md