diff options
| author | bors <bors@rust-lang.org> | 2014-06-17 02:51:53 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-06-17 02:51:53 +0000 |
| commit | 09967665eaa5ca3d259f0f59ef26c8d236bf47a7 (patch) | |
| tree | ae450abfecbe1fdec6f583cf7cf743c35663a4c7 /src/doc | |
| parent | cc30abbcad282634fb99089eb9297e7cc4f26729 (diff) | |
| parent | b9adb6c717627ab6dcc9298b79a8d44cfe2fc616 (diff) | |
| download | rust-09967665eaa5ca3d259f0f59ef26c8d236bf47a7.tar.gz rust-09967665eaa5ca3d259f0f59ef26c8d236bf47a7.zip | |
auto merge of #14955 : alexcrichton/rust/rollup, r=alexcrichton
Diffstat (limited to 'src/doc')
| -rw-r--r-- | src/doc/complement-bugreport.md | 2 | ||||
| -rw-r--r-- | src/doc/complement-design-faq.md | 10 | ||||
| -rw-r--r-- | src/doc/complement-lang-faq.md | 16 | ||||
| -rw-r--r-- | src/doc/index.md | 2 | ||||
| -rw-r--r-- | src/doc/intro.md | 2 | ||||
| -rw-r--r-- | src/doc/po/ja/complement-lang-faq.md.po | 40 | ||||
| -rw-r--r-- | src/doc/po/ja/tutorial.md.po | 14 | ||||
| -rw-r--r-- | src/doc/tutorial.md | 10 | ||||
| -rw-r--r-- | src/doc/version_info.html.template | 2 |
9 files changed, 49 insertions, 49 deletions
diff --git a/src/doc/complement-bugreport.md b/src/doc/complement-bugreport.md index d84d720871d..9057c135057 100644 --- a/src/doc/complement-bugreport.md +++ b/src/doc/complement-bugreport.md @@ -22,7 +22,7 @@ If you don't have enough time for a search, then don't worry about that. Just su the bug. If it's a duplicate, somebody will notice that and close it during triage. If you have the time for it, it would be useful to type the text of the error -message you got [into the issue tracker search box](https://github.com/mozilla/rust/issues) +message you got [into the issue tracker search box](https://github.com/rust-lang/rust/issues) to see if there's an existing bug that resembles your problem. If there is, and it's an open bug, you can comment on that issue and say you are also affected. This will encourage the devs to fix it. But again, don't let this stop you from diff --git a/src/doc/complement-design-faq.md b/src/doc/complement-design-faq.md index 8a8f6e02b6d..c01f38a9af6 100644 --- a/src/doc/complement-design-faq.md +++ b/src/doc/complement-design-faq.md @@ -111,14 +111,14 @@ match val.do_something() { [#3101][iss] is the issue that proposed making this the only behavior, with rationale and discussion. -[iss]: https://github.com/mozilla/rust/issues/3101 +[iss]: https://github.com/rust-lang/rust/issues/3101 ## No guaranteed tail-call optimization -In general, tail-call optimization is not guaranteed: see for a detailed -explanation with references. There is a [proposed extension][tce] that would -allow tail-call elimination in certain contexts. The compiler is still free to -optimize tail-calls [when it pleases][sco], however. +In general, tail-call optimization is not guaranteed: see [here][tml] for a +detailed explanation with references. There is a [proposed extension][tce] that +would allow tail-call elimination in certain contexts. The compiler is still +free to optimize tail-calls [when it pleases][sco], however. [tml]: https://mail.mozilla.org/pipermail/rust-dev/2013-April/003557.html [sco]: http://llvm.org/docs/CodeGenerator.html#sibling-call-optimization diff --git a/src/doc/complement-lang-faq.md b/src/doc/complement-lang-faq.md index 12176102ec6..ae58db9077c 100644 --- a/src/doc/complement-lang-faq.md +++ b/src/doc/complement-lang-faq.md @@ -5,9 +5,9 @@ There aren't many large programs yet. The Rust [compiler][rustc], 60,000+ lines at the time of writing, is written in Rust. As the oldest body of Rust code it has gone through many iterations of the language, and some parts are nicer to look at than others. It may not be the best code to learn from, but [borrowck] and [resolve] were written recently. -[rustc]: https://github.com/mozilla/rust/tree/master/src/librustc -[resolve]: https://github.com/mozilla/rust/blob/master/src/librustc/middle/resolve.rs -[borrowck]: https://github.com/mozilla/rust/blob/master/src/librustc/middle/borrowck/ +[rustc]: https://github.com/rust-lang/rust/tree/master/src/librustc +[resolve]: https://github.com/rust-lang/rust/blob/master/src/librustc/middle/resolve.rs +[borrowck]: https://github.com/rust-lang/rust/blob/master/src/librustc/middle/borrowck/ A research browser engine called [Servo][servo], currently 30,000+ lines across more than a dozen crates, will be exercising a lot of Rust's distinctive type-system and concurrency features, and integrating many native libraries. @@ -21,9 +21,9 @@ Some examples that demonstrate different aspects of the language: * The extra library's [json] module. Enums and pattern matching [sprocketnes]: https://github.com/pcwalton/sprocketnes -[hash]: https://github.com/mozilla/rust/blob/master/src/libstd/hash/mod.rs -[HashMap]: https://github.com/mozilla/rust/blob/master/src/libcollections/hashmap.rs -[json]: https://github.com/mozilla/rust/blob/master/src/libserialize/json.rs +[hash]: https://github.com/rust-lang/rust/blob/master/src/libstd/hash/mod.rs +[HashMap]: https://github.com/rust-lang/rust/blob/master/src/libcollections/hashmap.rs +[json]: https://github.com/rust-lang/rust/blob/master/src/libserialize/json.rs You may also be interested in browsing [GitHub's Rust][github-rust] page. @@ -33,8 +33,8 @@ You may also be interested in browsing [GitHub's Rust][github-rust] page. Yes. All development happens in lock-step on all 3 target platforms. Using MinGW, not Cygwin. Note that the windows implementation currently has some limitations: in particular 64-bit build is [not fully supported yet][win64], and all executables created by rustc [depends on libgcc DLL at runtime][libgcc]. -[win64]: https://github.com/mozilla/rust/issues/1237 -[libgcc]: https://github.com/mozilla/rust/issues/11782 +[win64]: https://github.com/rust-lang/rust/issues/1237 +[libgcc]: https://github.com/rust-lang/rust/issues/11782 ## Is it OO? How do I do this thing I normally do in an OO language? diff --git a/src/doc/index.md b/src/doc/index.md index df43e0850a4..addd767235c 100644 --- a/src/doc/index.md +++ b/src/doc/index.md @@ -75,4 +75,4 @@ li {list-style-type: none; } * [`#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/mozilla/rust/wiki) +* The Rust [wiki](http://github.com/rust-lang/rust/wiki) diff --git a/src/doc/intro.md b/src/doc/intro.md index 886528e8672..d30d7122986 100644 --- a/src/doc/intro.md +++ b/src/doc/intro.md @@ -361,7 +361,7 @@ fn main() { // This is ugly for now, but will be replaced by // `numbers[num as uint] += 1` in the near future. - // See: https://github.com/mozilla/rust/issues/6515 + // See: https://github.com/rust-lang/rust/issues/6515 *numbers.get_mut(num as uint) = *numbers.get_mut(num as uint) + 1; println!("{}", *numbers.get(num as uint)); diff --git a/src/doc/po/ja/complement-lang-faq.md.po b/src/doc/po/ja/complement-lang-faq.md.po index 7744df579a0..f28abcf1d52 100644 --- a/src/doc/po/ja/complement-lang-faq.md.po +++ b/src/doc/po/ja/complement-lang-faq.md.po @@ -34,46 +34,46 @@ msgstr "## 構造体" #: src/doc/complement-lang-faq.md:83 #, fuzzy #| msgid "" -#| "[bug-3319]: https://github.com/mozilla/rust/issues/3319 [wiki-start]: " -#| "https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust" +#| "[bug-3319]: https://github.com/rust-lang/rust/issues/3319 [wiki-start]: " +#| "https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust" msgid "" -"[rustc]: https://github.com/mozilla/rust/tree/master/src/librustc [resolve]: " -"https://github.com/mozilla/rust/blob/master/src/librustc/middle/resolve.rs " -"[borrowck]: https://github.com/mozilla/rust/blob/master/src/librustc/middle/" +"[rustc]: https://github.com/rust-lang/rust/tree/master/src/librustc [resolve]: " +"https://github.com/rust-lang/rust/blob/master/src/librustc/middle/resolve.rs " +"[borrowck]: https://github.com/rust-lang/rust/blob/master/src/librustc/middle/" "borrowck/" msgstr "" -"[bug-3319]: https://github.com/mozilla/rust/issues/3319\n" -"[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-" +"[bug-3319]: https://github.com/rust-lang/rust/issues/3319\n" +"[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-" "developing-Rust" #. type: Plain text #: src/doc/complement-lang-faq.md:99 #, fuzzy #| msgid "" -#| "[bug-3319]: https://github.com/mozilla/rust/issues/3319 [wiki-start]: " -#| "https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust" +#| "[bug-3319]: https://github.com/rust-lang/rust/issues/3319 [wiki-start]: " +#| "https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust" msgid "" "[sprocketnes]: https://github.com/pcwalton/sprocketnes [hash]: https://" -"github.com/mozilla/rust/blob/master/src/libstd/hash.rs [HashMap]: https://" -"github.com/mozilla/rust/blob/master/src/libstd/hashmap.rs [json]: https://" -"github.com/mozilla/rust/blob/master/src/libextra/json.rs" +"github.com/rust-lang/rust/blob/master/src/libstd/hash.rs [HashMap]: https://" +"github.com/rust-lang/rust/blob/master/src/libstd/hashmap.rs [json]: https://" +"github.com/rust-lang/rust/blob/master/src/libextra/json.rs" msgstr "" -"[bug-3319]: https://github.com/mozilla/rust/issues/3319\n" -"[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-" +"[bug-3319]: https://github.com/rust-lang/rust/issues/3319\n" +"[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-" "developing-Rust" #. type: Plain text #: src/doc/complement-lang-faq.md:110 #, fuzzy #| msgid "" -#| "[bug-3319]: https://github.com/mozilla/rust/issues/3319 [wiki-start]: " -#| "https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust" +#| "[bug-3319]: https://github.com/rust-lang/rust/issues/3319 [wiki-start]: " +#| "https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust" msgid "" -"[unwind]: https://github.com/mozilla/rust/issues/908 [libgcc]: https://" -"github.com/mozilla/rust/issues/1603" +"[unwind]: https://github.com/rust-lang/rust/issues/908 [libgcc]: https://" +"github.com/rust-lang/rust/issues/1603" msgstr "" -"[bug-3319]: https://github.com/mozilla/rust/issues/3319\n" -"[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-" +"[bug-3319]: https://github.com/rust-lang/rust/issues/3319\n" +"[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-" "developing-Rust" #. type: Plain text diff --git a/src/doc/po/ja/tutorial.md.po b/src/doc/po/ja/tutorial.md.po index 00ec1bc3670..68c32ae9704 100644 --- a/src/doc/po/ja/tutorial.md.po +++ b/src/doc/po/ja/tutorial.md.po @@ -303,15 +303,15 @@ msgstr "" #: src/doc/tutorial.md:92 #, fuzzy #| msgid "" -#| "[bug-3319]: https://github.com/mozilla/rust/issues/3319 [wiki-start]: " -#| "https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust" +#| "[bug-3319]: https://github.com/rust-lang/rust/issues/3319 [wiki-start]: " +#| "https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust" msgid "" -"[bug-3319]: https://github.com/mozilla/rust/issues/3319 [wiki-start]: " -"https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust " -"[git]: https://github.com/mozilla/rust.git" +"[bug-3319]: https://github.com/rust-lang/rust/issues/3319 [wiki-start]: " +"https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust " +"[git]: https://github.com/rust-lang/rust.git" msgstr "" -"[bug-3319]: https://github.com/mozilla/rust/issues/3319\n" -"[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-" +"[bug-3319]: https://github.com/rust-lang/rust/issues/3319\n" +"[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-" "developing-Rust" #. type: Plain text diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md index 61c71b273cb..b1f72f36ecb 100644 --- a/src/doc/tutorial.md +++ b/src/doc/tutorial.md @@ -90,8 +90,8 @@ Snapshot binaries are currently built and tested on several platforms: You may find that other platforms work, but these are our "tier 1" supported build environments that are most likely to work. -[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust -[git]: https://github.com/mozilla/rust.git +[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust +[git]: https://github.com/rust-lang/rust.git [rust-install]: http://www.rust-lang.org/install.html To build from source you will also need the following prerequisite @@ -183,7 +183,7 @@ There is ctags support via `src/etc/ctags.rust`, but many other tools and editors are not yet supported. If you end up writing a Rust mode for your favorite editor, let us know so that we can link to it. -[sublime]: http://github.com/dbp/sublime-rust +[sublime]: http://github.com/jhasse/sublime-rust [sublime-pkg]: http://wbond.net/sublime_packages/package_control # Syntax basics @@ -3345,6 +3345,6 @@ There is further documentation on the [wiki], however those tend to be even more [testing]: guide-testing.html [runtime]: guide-runtime.html [rustdoc]: rustdoc.html -[wiki]: https://github.com/mozilla/rust/wiki/Docs +[wiki]: https://github.com/rust-lang/rust/wiki/Docs -[wiki-packages]: https://github.com/mozilla/rust/wiki/Doc-packages,-editors,-and-other-tools +[wiki-packages]: https://github.com/rust-lang/rust/wiki/Doc-packages,-editors,-and-other-tools diff --git a/src/doc/version_info.html.template b/src/doc/version_info.html.template index 06008d16f5d..49f0b183e16 100644 --- a/src/doc/version_info.html.template +++ b/src/doc/version_info.html.template @@ -1,6 +1,6 @@ <div id="versioninfo"> <img src="http://www.rust-lang.org/logos/rust-logo-32x32-blk.png" width="32" height="32" alt><br> <span class="white-sticker"><a href="http://rust-lang.org">Rust</a> VERSION</span><br> - <a href="http://github.com/mozilla/rust/commit/STAMP" + <a href="http://github.com/rust-lang/rust/commit/STAMP" class="hash white-sticker">SHORT_HASH</a> </div> |
