about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNick Sweeting <git@nicksweeting.com>2017-03-23 13:29:04 -0400
committerGitHub <noreply@github.com>2017-03-23 13:29:04 -0400
commit425c1a3a052d072dd53719a27454e905af8e954c (patch)
tree9320a2525f262f32dd6c99afd3d6496455467ee6 /src
parentd5580374d7eb8795a8188be4650bd5079a25c6b3 (diff)
downloadrust-425c1a3a052d072dd53719a27454e905af8e954c.tar.gz
rust-425c1a3a052d072dd53719a27454e905af8e954c.zip
Add contribution instructions to stdlib docs
Diffstat (limited to 'src')
-rw-r--r--src/libstd/lib.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 064144dcd68..c6b6d3ab5b0 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -94,6 +94,12 @@
 //! compiler - but they are documented here the same). Like the prelude, the
 //! standard macros are imported by default into all crates.
 //!
+//! # Contributing changes to the documentation
+//!
+//! The source for this documentation can be found on [github](https://github.com/rust-lang/rust/tree/master/src/libstd).
+//! To contribute changes, you can search for nearby strings in github to find
+//! relevant files, then submit pull-requests with your suggested changes.
+//!
 //! # A Tour of The Rust Standard Library
 //!
 //! The rest of this crate documentation is dedicated to pointing out notable