Skip to content

Commit 066ec6c

Browse files
committed
Fixes from Linkcheck
1 parent 8583740 commit 066ec6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/code-considerations/breaking-changes/fundamental.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Type annotated with the `#[fundamental]` attribute have different coherence rule
99
- `Box<T>`
1010
- `Pin<T>`
1111

12-
Typically, the scope of [breakage in new trait impls](./reviewing-code/breakage/new-trait-impls.md) is limited to inference and deref-coercion. New trait impls on `#[fundamental]` types may overlap with downstream impls and cause other kinds of breakage.
12+
Typically, the scope of [breakage in new trait impls](./new-trait-impls.md) is limited to inference and deref-coercion. New trait impls on `#[fundamental]` types may overlap with downstream impls and cause other kinds of breakage.
1313

1414
[RFC 1023]: https://rust-lang.github.io/rfcs/1023-rebalancing-coherence.html
1515

src/code-considerations/breaking-changes/new-trait-impls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ let b = Arc::from("a");
3333

3434
will no longer compile, because we've previously been relying on inference to figure out the `T` in `Box<T>`.
3535

36-
This kind of breakage can be ok, but a [crater] run should estimate the scope.
36+
This kind of breakage can be ok, but a [crater](../../tools-and-bots/crater.md) run should estimate the scope.
3737

3838
## Deref coercion breaks when a new impl is introduced
3939

0 commit comments

Comments
 (0)