Skip to content

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ We are always looking out for lessons to learn from high-quality Rust libraries.
1515
If you spot an aspect of some crate's API that you think other crates could
1616
benefit from, please [file an issue] to let us know.
1717

18-
[file an issue]: https://github.com/rust-lang-nursery/api-guidelines/issues/new
18+
[file an issue]: https://github.com/rust-lang/api-guidelines/issues/new
1919

2020
## Writing content for the guidelines
2121

2222
The guidelines are written in a collection of Markdown files under the [`src`]
2323
directory. When making changes, you can preview the rendered content using
2424
[mdBook].
2525

26-
[`src`]: https://github.com/rust-lang-nursery/api-guidelines/tree/master/src
26+
[`src`]: https://github.com/rust-lang/api-guidelines/tree/master/src
2727
[mdBook]: https://github.com/azerupi/mdBook
2828

2929
```sh

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ the Rust programming language. They are authored largely by the Rust
55
library team, based on experiences building the Rust standard library
66
and other crates in the Rust ecosystem.
77

8-
[Read them here](https://rust-lang-nursery.github.io/api-guidelines).
8+
[Read them here](https://rust-lang.github.io/api-guidelines).
99

1010
## License
1111

src/about.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ If you are interested in contributing to the API guidelines, check out
2121
[contributing.md] and join our [Gitter channel].
2222

2323
[checklist]: checklist.html
24-
[contributing.md]: https://github.com/rust-lang-nursery/api-guidelines/blob/master/CONTRIBUTING.md
24+
[contributing.md]: https://github.com/rust-lang/api-guidelines/blob/master/CONTRIBUTING.md
2525
[Gitter channel]: https://gitter.im/rust-impl-period/WG-libs-guidelines

src/future-proofing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ but probably not in all cases. See the ["`impl Trait` for returning complex
118118
types with ease"][impl-trait-2] section of the Edition Guide for more details.
119119

120120
[`impl Trait`]: https://github.com/rust-lang/rfcs/blob/master/text/1522-conservative-impl-trait.md
121-
[impl-trait-2]: https://rust-lang-nursery.github.io/edition-guide/rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html
121+
[impl-trait-2]: https://rust-lang.github.io/edition-guide/rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html
122122

123123
```rust
124124
pub fn my_transform<I: Iterator>(input: I) -> impl Iterator<Item = (usize, I::Item)> {

src/naming.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ traits) and `snake_case` for "value-level" constructs. More precisely:
1111

1212
| Item | Convention |
1313
| ---- | ---------- |
14-
| Crates | [unclear](https://github.com/rust-lang-nursery/api-guidelines/issues/29) |
14+
| Crates | [unclear](https://github.com/rust-lang/api-guidelines/issues/29) |
1515
| Modules | `snake_case` |
1616
| Types | `UpperCamelCase` |
1717
| Traits | `UpperCamelCase` |
@@ -26,7 +26,7 @@ traits) and `snake_case` for "value-level" constructs. More precisely:
2626
| Constants | `SCREAMING_SNAKE_CASE` |
2727
| Type parameters | concise `UpperCamelCase`, usually single uppercase letter: `T` |
2828
| Lifetimes | short `lowercase`, usually a single letter: `'a`, `'de`, `'src` |
29-
| Features | [unclear](https://github.com/rust-lang-nursery/api-guidelines/issues/101) but see [C-FEATURE] |
29+
| Features | [unclear](https://github.com/rust-lang/api-guidelines/issues/101) but see [C-FEATURE] |
3030

3131
In `UpperCamelCase`, acronyms and contractions of compound words count as one word: use `Uuid` rather than `UUID`, `Usize` rather than `USize` or `Stdin` rather than `StdIn`. In `snake_case`, acronyms and contractions are lower-cased: `is_xid_start`.
3232

src/type-safety.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ this is often done by having each flag correspond to a particular bit, allowing
9191
a single integer to represent, say, 32 or 64 flags. Rust's [`bitflags`] crate
9292
provides a typesafe representation of this pattern.
9393

94-
[`bitflags`]: https://github.com/rust-lang-nursery/bitflags
94+
[`bitflags`]: https://github.com/bitflags/bitflags
9595

9696
```rust
9797
#[macro_use]

0 commit comments

Comments
 (0)