Skip to content

Commit f4ae8a8

Browse files
brsonalexcrichton
authored andcommitted
Update repo location
1 parent e1971dd commit f4ae8a8

21 files changed

+65
-65
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ please do two things:
2020

2121
Pull requests will be treated as "review requests", and we will give
2222
feedback we expect to see corrected on
23-
[style](https://github.com/mozilla/rust/wiki/Note-style-guide) and
23+
[style](https://github.com/rust-lang/rust/wiki/Note-style-guide) and
2424
substance before pulling. Changes contributed via pull request should
2525
focus on a single issue at a time, like any other. We will not accept
2626
pull-requests that try to "sneak" unrelated changes in.
2727

2828
Normally, all pull requests must include regression tests (see
29-
[Note-testsuite](https://github.com/mozilla/rust/wiki/Note-testsuite))
29+
[Note-testsuite](https://github.com/rust-lang/rust/wiki/Note-testsuite))
3030
that test your change. Occasionally, a change will be very difficult
3131
to test for. In those cases, please include a note in your commit
3232
message explaining why.
@@ -41,4 +41,4 @@ example, if it's 2014, and you change a Rust file that was created in
4141
```
4242

4343
For more details, please refer to
44-
[Note-development-policy](https://github.com/mozilla/rust/wiki/Note-development-policy).
44+
[Note-development-policy](https://github.com/rust-lang/rust/wiki/Note-development-policy).

Makefile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@
9898
# This is hardly all there is to know of The Rust Build System's
9999
# mysteries. The tale continues on the wiki[1][2].
100100
#
101-
# [1]: https://github.com/mozilla/rust/wiki/Note-build-system
102-
# [2]: https://github.com/mozilla/rust/wiki/Note-testsuite
101+
# [1]: https://github.com/rust-lang/rust/wiki/Note-build-system
102+
# [2]: https://github.com/rust-lang/rust/wiki/Note-testsuite
103103
#
104104
# If you really feel like getting your hands dirty, then:
105105
#

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ documentation.
1414
1515
[installer]: http://www.rust-lang.org/install.html
1616
[tutorial]: http://doc.rust-lang.org/tutorial.html
17-
[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust
18-
[win-wiki]: https://github.com/mozilla/rust/wiki/Using-Rust-on-Windows
17+
[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust
18+
[win-wiki]: https://github.com/rust-lang/rust/wiki/Using-Rust-on-Windows
1919

2020
## Building from Source
2121

@@ -38,7 +38,7 @@ documentation.
3838

3939
Or to build from the [repo] do:
4040

41-
$ git clone https://github.com/mozilla/rust.git
41+
$ git clone https://github.com/rust-lang/rust.git
4242
$ cd rust
4343

4444
Now that you have Rust's source code, you can configure and build it:
@@ -58,7 +58,7 @@ documentation.
5858
3. Read the [tutorial].
5959
4. Enjoy!
6060

61-
[repo]: https://github.com/mozilla/rust
61+
[repo]: https://github.com/rust-lang/rust
6262
[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz
6363
[tutorial]: http://doc.rust-lang.org/tutorial.html
6464

@@ -83,7 +83,7 @@ swap, it will take a very long time to build.
8383

8484
There is a lot more documentation in the [wiki].
8585

86-
[wiki]: https://github.com/mozilla/rust/wiki
86+
[wiki]: https://github.com/rust-lang/rust/wiki
8787

8888
## License
8989

man/rustc.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ To build an executable with debug info:
184184
rustdoc
185185

186186
.SH "BUGS"
187-
See <\fBhttps://github.com/mozilla/rust/issues\fR> for issues.
187+
See <\fBhttps://github.com/rust-lang/rust/issues\fR> for issues.
188188

189189
.SH "AUTHOR"
190190
See \fBAUTHORS.txt\fR in the Rust source distribution.

man/rustdoc.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The generated HTML can be viewed with any standard web browser.
8787
rustc
8888

8989
.SH "BUGS"
90-
See <\fBhttps://github.com/mozilla/rust/issues\fR> for issues.
90+
See <\fBhttps://github.com/rust-lang/rust/issues\fR> for issues.
9191

9292
.SH "AUTHOR"
9393
See \fBAUTHORS.txt\fR in the Rust source distribution.

src/doc/complement-bugreport.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you don't have enough time for a search, then don't worry about that. Just su
2222
the bug. If it's a duplicate, somebody will notice that and close it during triage.
2323

2424
If you have the time for it, it would be useful to type the text of the error
25-
message you got [into the issue tracker search box](https://github.com/mozilla/rust/issues)
25+
message you got [into the issue tracker search box](https://github.com/rust-lang/rust/issues)
2626
to see if there's an existing bug that resembles your problem. If there is,
2727
and it's an open bug, you can comment on that issue and say you are also affected.
2828
This will encourage the devs to fix it. But again, don't let this stop you from

src/doc/complement-design-faq.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ match val.do_something() {
111111
[#3101][iss] is the issue that proposed making this the only behavior, with
112112
rationale and discussion.
113113

114-
[iss]: https://github.com/mozilla/rust/issues/3101
114+
[iss]: https://github.com/rust-lang/rust/issues/3101
115115

116116
## No guaranteed tail-call optimization
117117

src/doc/complement-lang-faq.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
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.
77

8-
[rustc]: https://github.com/mozilla/rust/tree/master/src/librustc
9-
[resolve]: https://github.com/mozilla/rust/blob/master/src/librustc/middle/resolve.rs
10-
[borrowck]: https://github.com/mozilla/rust/blob/master/src/librustc/middle/borrowck/
8+
[rustc]: https://github.com/rust-lang/rust/tree/master/src/librustc
9+
[resolve]: https://github.com/rust-lang/rust/blob/master/src/librustc/middle/resolve.rs
10+
[borrowck]: https://github.com/rust-lang/rust/blob/master/src/librustc/middle/borrowck/
1111

1212
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.
1313

@@ -21,9 +21,9 @@ Some examples that demonstrate different aspects of the language:
2121
* The extra library's [json] module. Enums and pattern matching
2222

2323
[sprocketnes]: https://github.com/pcwalton/sprocketnes
24-
[hash]: https://github.com/mozilla/rust/blob/master/src/libstd/hash/mod.rs
25-
[HashMap]: https://github.com/mozilla/rust/blob/master/src/libcollections/hashmap.rs
26-
[json]: https://github.com/mozilla/rust/blob/master/src/libserialize/json.rs
24+
[hash]: https://github.com/rust-lang/rust/blob/master/src/libstd/hash/mod.rs
25+
[HashMap]: https://github.com/rust-lang/rust/blob/master/src/libcollections/hashmap.rs
26+
[json]: https://github.com/rust-lang/rust/blob/master/src/libserialize/json.rs
2727

2828
You may also be interested in browsing [GitHub's Rust][github-rust] page.
2929

@@ -33,8 +33,8 @@ You may also be interested in browsing [GitHub's Rust][github-rust] page.
3333

3434
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].
3535

36-
[win64]: https://github.com/mozilla/rust/issues/1237
37-
[libgcc]: https://github.com/mozilla/rust/issues/11782
36+
[win64]: https://github.com/rust-lang/rust/issues/1237
37+
[libgcc]: https://github.com/rust-lang/rust/issues/11782
3838

3939
## Is it OO? How do I do this thing I normally do in an OO language?
4040

src/doc/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ li {list-style-type: none; }
7575
* [`#rust-internals`](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-internals) - compiler and libraries
7676
* [`#rust-osdev`](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-osdev) - operating system development
7777
* The Rust community on [Reddit](http://reddit.com/r/rust)
78-
* The Rust [wiki](http://github.com/mozilla/rust/wiki)
78+
* The Rust [wiki](http://github.com/rust-lang/rust/wiki)

src/doc/intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ fn main() {
361361
362362
// This is ugly for now, but will be replaced by
363363
// `numbers[num as uint] += 1` in the near future.
364-
// See: https://github.com/mozilla/rust/issues/6515
364+
// See: https://github.com/rust-lang/rust/issues/6515
365365
*numbers.get_mut(num as uint) = *numbers.get_mut(num as uint) + 1;
366366
367367
println!("{}", *numbers.get(num as uint));

src/doc/po/ja/complement-lang-faq.md.po

+20-20
Original file line numberDiff line numberDiff line change
@@ -34,46 +34,46 @@ msgstr "## 構造体"
3434
#: src/doc/complement-lang-faq.md:83
3535
#, fuzzy
3636
#| msgid ""
37-
#| "[bug-3319]: https://github.com/mozilla/rust/issues/3319 [wiki-start]: "
38-
#| "https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust"
37+
#| "[bug-3319]: https://github.com/rust-lang/rust/issues/3319 [wiki-start]: "
38+
#| "https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust"
3939
msgid ""
40-
"[rustc]: https://github.com/mozilla/rust/tree/master/src/librustc [resolve]: "
41-
"https://github.com/mozilla/rust/blob/master/src/librustc/middle/resolve.rs "
42-
"[borrowck]: https://github.com/mozilla/rust/blob/master/src/librustc/middle/"
40+
"[rustc]: https://github.com/rust-lang/rust/tree/master/src/librustc [resolve]: "
41+
"https://github.com/rust-lang/rust/blob/master/src/librustc/middle/resolve.rs "
42+
"[borrowck]: https://github.com/rust-lang/rust/blob/master/src/librustc/middle/"
4343
"borrowck/"
4444
msgstr ""
45-
"[bug-3319]: https://github.com/mozilla/rust/issues/3319\n"
46-
"[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-"
45+
"[bug-3319]: https://github.com/rust-lang/rust/issues/3319\n"
46+
"[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-"
4747
"developing-Rust"
4848

4949
#. type: Plain text
5050
#: src/doc/complement-lang-faq.md:99
5151
#, fuzzy
5252
#| msgid ""
53-
#| "[bug-3319]: https://github.com/mozilla/rust/issues/3319 [wiki-start]: "
54-
#| "https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust"
53+
#| "[bug-3319]: https://github.com/rust-lang/rust/issues/3319 [wiki-start]: "
54+
#| "https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust"
5555
msgid ""
5656
"[sprocketnes]: https://github.com/pcwalton/sprocketnes [hash]: https://"
57-
"github.com/mozilla/rust/blob/master/src/libstd/hash.rs [HashMap]: https://"
58-
"github.com/mozilla/rust/blob/master/src/libstd/hashmap.rs [json]: https://"
59-
"github.com/mozilla/rust/blob/master/src/libextra/json.rs"
57+
"github.com/rust-lang/rust/blob/master/src/libstd/hash.rs [HashMap]: https://"
58+
"github.com/rust-lang/rust/blob/master/src/libstd/hashmap.rs [json]: https://"
59+
"github.com/rust-lang/rust/blob/master/src/libextra/json.rs"
6060
msgstr ""
61-
"[bug-3319]: https://github.com/mozilla/rust/issues/3319\n"
62-
"[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-"
61+
"[bug-3319]: https://github.com/rust-lang/rust/issues/3319\n"
62+
"[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-"
6363
"developing-Rust"
6464

6565
#. type: Plain text
6666
#: src/doc/complement-lang-faq.md:110
6767
#, fuzzy
6868
#| msgid ""
69-
#| "[bug-3319]: https://github.com/mozilla/rust/issues/3319 [wiki-start]: "
70-
#| "https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust"
69+
#| "[bug-3319]: https://github.com/rust-lang/rust/issues/3319 [wiki-start]: "
70+
#| "https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust"
7171
msgid ""
72-
"[unwind]: https://github.com/mozilla/rust/issues/908 [libgcc]: https://"
73-
"github.com/mozilla/rust/issues/1603"
72+
"[unwind]: https://github.com/rust-lang/rust/issues/908 [libgcc]: https://"
73+
"github.com/rust-lang/rust/issues/1603"
7474
msgstr ""
75-
"[bug-3319]: https://github.com/mozilla/rust/issues/3319\n"
76-
"[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-"
75+
"[bug-3319]: https://github.com/rust-lang/rust/issues/3319\n"
76+
"[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-"
7777
"developing-Rust"
7878

7979
#. type: Plain text

src/doc/po/ja/tutorial.md.po

+7-7
Original file line numberDiff line numberDiff line change
@@ -303,15 +303,15 @@ msgstr ""
303303
#: src/doc/tutorial.md:92
304304
#, fuzzy
305305
#| msgid ""
306-
#| "[bug-3319]: https://github.com/mozilla/rust/issues/3319 [wiki-start]: "
307-
#| "https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust"
306+
#| "[bug-3319]: https://github.com/rust-lang/rust/issues/3319 [wiki-start]: "
307+
#| "https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust"
308308
msgid ""
309-
"[bug-3319]: https://github.com/mozilla/rust/issues/3319 [wiki-start]: "
310-
"https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust "
311-
"[git]: https://github.com/mozilla/rust.git"
309+
"[bug-3319]: https://github.com/rust-lang/rust/issues/3319 [wiki-start]: "
310+
"https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust "
311+
"[git]: https://github.com/rust-lang/rust.git"
312312
msgstr ""
313-
"[bug-3319]: https://github.com/mozilla/rust/issues/3319\n"
314-
"[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-"
313+
"[bug-3319]: https://github.com/rust-lang/rust/issues/3319\n"
314+
"[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-"
315315
"developing-Rust"
316316

317317
#. type: Plain text

src/doc/tutorial.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ Snapshot binaries are currently built and tested on several platforms:
9090
You may find that other platforms work, but these are our "tier 1"
9191
supported build environments that are most likely to work.
9292

93-
[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust
94-
[git]: https://github.com/mozilla/rust.git
93+
[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust
94+
[git]: https://github.com/rust-lang/rust.git
9595
[rust-install]: http://www.rust-lang.org/install.html
9696

9797
To build from source you will also need the following prerequisite
@@ -3345,6 +3345,6 @@ There is further documentation on the [wiki], however those tend to be even more
33453345
[testing]: guide-testing.html
33463346
[runtime]: guide-runtime.html
33473347
[rustdoc]: rustdoc.html
3348-
[wiki]: https://github.com/mozilla/rust/wiki/Docs
3348+
[wiki]: https://github.com/rust-lang/rust/wiki/Docs
33493349

3350-
[wiki-packages]: https://github.com/mozilla/rust/wiki/Doc-packages,-editors,-and-other-tools
3350+
[wiki-packages]: https://github.com/rust-lang/rust/wiki/Doc-packages,-editors,-and-other-tools

src/doc/version_info.html.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div id="versioninfo">
22
<img src="http://www.rust-lang.org/logos/rust-logo-32x32-blk.png" width="32" height="32" alt><br>
33
<span class="white-sticker"><a href="http://rust-lang.org">Rust</a> VERSION</span><br>
4-
<a href="http://github.com/mozilla/rust/commit/STAMP"
4+
<a href="http://github.com/rust-lang/rust/commit/STAMP"
55
class="hash white-sticker">SHORT_HASH</a>
66
</div>

src/etc/emacs/rust-mode.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
;; Version: 0.2.0
44
;; Author: Mozilla
5-
;; Url: https://github.com/mozilla/rust
5+
;; Url: https://github.com/rust-lang/rust
66
;; Keywords: languages
77

88
;;; Commentary:

src/etc/generate-keyword-tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
This script takes a list of keywords and generates a testcase, that checks
1414
if using the keyword as identifier fails, for every keyword. The generate
1515
test files are set read-only.
16-
Test for https://github.com/mozilla/rust/issues/2275
16+
Test for https://github.com/rust-lang/rust/issues/2275
1717
1818
sample usage: src/etc/generate-keyword-tests.py as break
1919
"""

src/librustc/README.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ An informal guide to reading and working on the rustc compiler.
44
If you wish to expand on this document, or have a more experienced
55
Rust contributor add anything else to it, please get in touch:
66

7-
https://github.com/mozilla/rust/wiki/Note-development-policy
7+
https://github.com/rust-lang/rust/wiki/Note-development-policy
88
("Communication" subheading)
99

1010
or file a bug:
1111

12-
https://github.com/mozilla/rust/issues
12+
https://github.com/rust-lang/rust/issues
1313

1414
Your concerns are probably the same as someone else's.
1515

src/librustc/back/svh.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
//!
4545
//! # Relevant links
4646
//!
47-
//! Original issue: https://github.com/mozilla/rust/issues/10207
47+
//! Original issue: https://github.com/rust-lang/rust/issues/10207
4848
4949
use std::fmt;
5050
use std::hash::Hash;

src/librustrt/stack.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ pub unsafe fn record_stack_bounds(stack_lo: uint, stack_hi: uint) {
146146
// means that if we want to perform valid FFI on windows, then we need
147147
// to ensure that the stack bounds are what they truly are for this
148148
// task. More info can be found at:
149-
// https://github.com/mozilla/rust/issues/3445#issuecomment-26114839
149+
// https://github.com/rust-lang/rust/issues/3445#issuecomment-26114839
150150
//
151151
// stack range is at TIB: %gs:0x08 (top) and %gs:0x10 (bottom)
152152
asm!("mov $0, %gs:0x08" :: "r"(stack_hi) :: "volatile");

src/libsyntax/ast.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ pub enum ViewItem_ {
977977
// ident: name used to refer to this crate in the code
978978
// optional (InternedString,StrStyle): if present, this is a location
979979
// (containing arbitrary characters) from which to fetch the crate sources
980-
// For example, extern crate whatever = "github.com/mozilla/rust"
980+
// For example, extern crate whatever = "github.com/rust-lang/rust"
981981
ViewItemExternCrate(Ident, Option<(InternedString,StrStyle)>, NodeId),
982982
ViewItemUse(Gc<ViewPath>),
983983
}

src/libsyntax/crateid.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ use std::fmt;
1212

1313
/// CrateIds identify crates and include the crate name and optionally a path
1414
/// and version. In the full form, they look like relative URLs. Example:
15-
/// `github.com/mozilla/rust#std:1.0` would be a package ID with a path of
16-
/// `github.com/mozilla/rust` and a crate name of `std` with a version of
15+
/// `github.com/rust-lang/rust#std:1.0` would be a package ID with a path of
16+
/// `github.com/rust-lang/rust` and a crate name of `std` with a version of
1717
/// `1.0`. If no crate name is given after the hash, the name is inferred to
1818
/// be the last component of the path. If no version is given, it is inferred
1919
/// to be `0.0`.

0 commit comments

Comments
 (0)