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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 5 additions & 5 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 8 additions & 8 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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));

0 commit comments

Comments
 (0)