Merge pull request #2655 from reddevilmidzy/docs

Update contributing.md with Rust Book reference
diff --git a/src/contributing.md b/src/contributing.md
index 8c764c3..4476ed8 100644
--- a/src/contributing.md
+++ b/src/contributing.md
@@ -52,6 +52,7 @@
 Rust has strong backwards-compatibility guarantees.
 Thus, new features can't just be implemented directly in stable Rust.
 Instead, we have 3 release channels: stable, beta, and nightly.
+See [The Rust Book] for more details on Rust’s train release model.
 
 - **Stable**: this is the latest stable release for general usage.
 - **Beta**: this is the next release (will be stable within 6 weeks).
@@ -62,6 +63,8 @@
 See [this chapter on implementing new features](./implementing_new_features.md) for more
 information.
 
+[The Rust Book]: https://doc.rust-lang.org/book/appendix-07-nightly-rust.html
+
 ### Breaking changes
 
 Breaking changes have a [dedicated section][Breaking Changes] in the dev-guide.