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