From 05641413a766b8cbd2315eeb6258df289f0737d5 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 19 Jun 2014 10:52:02 -0700 Subject: [PATCH 1/2] Update the external links in the doc index Splits 'extern resources' into 'external documentation and 'community', adds rustforrubyists.com and rustbyexample.com, stackoverflow.com. --- src/doc/index.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/doc/index.md b/src/doc/index.md index addd767235c5..78f72819b5b8 100644 --- a/src/doc/index.md +++ b/src/doc/index.md @@ -67,12 +67,22 @@ li {list-style-type: none; } * [The `rustdoc` manual](rustdoc.html) -# External resources +# External documentation -* The Rust IRC channels on [irc.mozilla.org](http://irc.mozilla.org/) +* [Rust for Rubyists] - An excellent introduction for Rust; not just for Rubyists. +* [Rust by Example] - Short examples of common tasks in Rust. +* [The Rust wiki](http://github.com/rust-lang/rust/wiki) + +[Rust for Rubyists]: http://www.rustforrubyists.com/ +[Rust by Example]: http://rustbyexample.com/ + +# Community + +* [Reddit](http://reddit.com/r/rust) +* [Stack Overflow](http://stackoverflow.com/questions/tagged/rust) +* The Rust IRC channels on [irc.mozilla.org](http://irc.mozilla.org/): * [`#rust`](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust) - general discussion * [`#rust-gamedev`](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-gamedev) - game development * [`#rust-internals`](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-internals) - compiler and libraries * [`#rust-osdev`](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-osdev) - operating system development -* The Rust community on [Reddit](http://reddit.com/r/rust) -* The Rust [wiki](http://github.com/rust-lang/rust/wiki) + From 792d5b742c44f3c7120a3982cbae44abc33e552d Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 19 Jun 2014 11:45:16 -0700 Subject: [PATCH 2/2] doc: Add disclaimers about versions of external docs --- src/doc/index.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/doc/index.md b/src/doc/index.md index 78f72819b5b8..e77f3418d053 100644 --- a/src/doc/index.md +++ b/src/doc/index.md @@ -69,8 +69,12 @@ li {list-style-type: none; } # External documentation -* [Rust for Rubyists] - An excellent introduction for Rust; not just for Rubyists. -* [Rust by Example] - Short examples of common tasks in Rust. +*Note: While these are great resources for learning Rust, they may +track a particular version of Rust that is likely not exactly the same +as that for which this documentation was generated.* + +* [Rust for Rubyists] - An excellent introduction for Rust; not just for Rubyists (tracks the most recent release). +* [Rust by Example] - Short examples of common tasks in Rust (tracks the master branch). * [The Rust wiki](http://github.com/rust-lang/rust/wiki) [Rust for Rubyists]: http://www.rustforrubyists.com/