about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-04-12 09:16:14 +0000
committerbors <bors@rust-lang.org>2017-04-12 09:16:14 +0000
commit1dca19ae3fd195fa517e326a39bfee729da7cadb (patch)
tree6225164c972995f0165d1393c0bb198226655666 /src/libstd
parent8c6e2ff45248dde631ff93f6fc21049dbafd5cba (diff)
parent9765fbc8130bb7dcd14e1ebc64c0b797840ca488 (diff)
downloadrust-1dca19ae3fd195fa517e326a39bfee729da7cadb.tar.gz
rust-1dca19ae3fd195fa517e326a39bfee729da7cadb.zip
Auto merge of #40765 - pirate:patch-3, r=aturon
Add contribution instructions to stdlib docs

Generally programming language docs have instructions on how to contribute changes.

I couldn't find any in the rust docs, so I figured I'd add an instructions section, let me know if this belongs somewhere else!
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 6299a9070ae..4f6d170560c 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -94,6 +94,17 @@
 //! 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
+//!
+//! Check out the rust contribution guidelines [here](
+//! https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md).
+//! The source for this documentation can be found on [Github](https://github.com/rust-lang).
+//! To contribute changes, make sure you read the guidelines first, then submit
+//! pull-requests for your suggested changes.
+//!
+//! Contributions are appreciated! If you see a part of the docs that can be
+//! improved, submit a PR, or chat with us first on irc.mozilla.org #rust-docs.
+//!
 //! # A Tour of The Rust Standard Library
 //!
 //! The rest of this crate documentation is dedicated to pointing out notable