Skip to content

Commit d8970bf

Browse files
committed
Auto merge of rust-lang#9083 - giraffate:fix_link_in_changelog, r=flip1995
Fix some links changelog: none
2 parents d4488a5 + 1988375 commit d8970bf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22

33
All notable changes to this project will be documented in this file.
4-
See [Changelog Update](doc/changelog_update.md) if you want to update this
4+
See [Changelog Update](book/src/development/infrastructure/changelog_update.md) if you want to update this
55
document.
66

77
## Unreleased / In Rust Nightly
@@ -1577,7 +1577,7 @@ Released 2021-03-25
15771577
* Add `cargo dev-lintcheck` tool to the Clippy Dev Tool
15781578
[#6469](https://github.com/rust-lang/rust-clippy/pull/6469)
15791579

1580-
[Roadmap]: https://github.com/rust-lang/rust-clippy/blob/master/doc/roadmap-2021.md
1580+
[Roadmap]: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/proposals/roadmap-2021.md
15811581
[Roadmap project page]: https://github.com/rust-lang/rust-clippy/projects/3
15821582

15831583
## Rust 1.50
@@ -3426,7 +3426,7 @@ Released 2018-09-13
34263426
[`AsRef`]: https://doc.rust-lang.org/std/convert/trait.AsRef.html
34273427
[configuration file]: ./rust-clippy#configuration
34283428
[pull3665]: https://github.com/rust-lang/rust-clippy/pull/3665
3429-
[adding_lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md
3429+
[adding_lints]: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/adding_lints.md
34303430
[`README.md`]: https://github.com/rust-lang/rust-clippy/blob/master/README.md
34313431

34323432
<!-- lint disable no-unused-definitions -->

book/src/development/basics.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ This document explains the basics for hacking on Clippy. Besides others, this
44
includes how to build and test Clippy. For a more in depth description on the
55
codebase take a look at [Adding Lints] or [Common Tools].
66

7-
[Adding Lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md
8-
[Common Tools]: https://github.com/rust-lang/rust-clippy/blob/master/doc/common_tools_writing_lints.md
7+
[Adding Lints]: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/adding_lints.md
8+
[Common Tools]: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/common_tools_writing_lints.md
99

1010
- [Basics for hacking on Clippy](#basics-for-hacking-on-clippy)
1111
- [Get the Code](#get-the-code)

clippy_utils/src/ty.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ pub fn has_iter_method(cx: &LateContext<'_>, probably_ref_ty: Ty<'_>) -> Option<
147147
/// * [`get_trait_def_id`](super::get_trait_def_id) to get a trait [`DefId`].
148148
/// * [Common tools for writing lints] for an example how to use this function and other options.
149149
///
150-
/// [Common tools for writing lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/common_tools_writing_lints.md#checking-if-a-type-implements-a-specific-trait
150+
/// [Common tools for writing lints]: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/common_tools_writing_lints.md#checking-if-a-type-implements-a-specific-trait
151151
pub fn implements_trait<'tcx>(
152152
cx: &LateContext<'tcx>,
153153
ty: Ty<'tcx>,

0 commit comments

Comments
 (0)