Skip to content

Commit e905e3a

Browse files
igaraymark-i-m
authored andcommitted
Fixed broken chalk links
1 parent dca6649 commit e905e3a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/traits/lowering-rules.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ comment like so:
2828
// Rule Foo-Bar-Baz
2929

3030
The reference implementation of these rules is to be found in
31-
[`chalk/chalk-rules/src/clauses.rs`][chalk_rules]. They are also ported in
31+
[`chalk/chalk-solve/src/clauses.rs`][chalk_rules]. They are also ported in
3232
rustc in the [`librustc_traits`][librustc_traits] crate.
3333

34-
[chalk_rules]: https://github.com/rust-lang/chalk/blob/master/chalk-rules/src/clauses.rs
34+
[chalk_rules]: https://github.com/rust-lang/chalk/blob/master/chalk-solve/src/clauses.rs
3535
[librustc_traits]: https://github.com/rust-lang/rust/tree/master/src/librustc_traits
3636

3737
## Lowering where clauses

src/traits/wf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ to prove it using the lowered rules we described in the
1111
[lowering rules](./lowering-rules.md) chapter. If we are able to prove it, we
1212
say that the construct is well-formed. If not, we report an error to the user.
1313

14-
Well-formedness checking happens in the [`chalk/chalk-rules/src/wf.rs`][wf]
14+
Well-formedness checking happens in the [`chalk/chalk-solve/src/wf.rs`][wf]
1515
module in chalk. After you have read this chapter, you may find useful to see
1616
an extended set of examples in the [`chalk/src/test/wf.rs`][wf_test] submodule.
1717

1818
The new-style WF checking has not been implemented in rustc yet.
1919

20-
[wf]: https://github.com/rust-lang/chalk/blob/master/chalk-rules/src/wf.rs
20+
[wf]: https://github.com/rust-lang/chalk/blob/master/chalk-solve/src/wf.rs
2121
[wf_test]: https://github.com/rust-lang/chalk/blob/master/src/test/wf.rs
2222

2323
We give here a complete reference of the generated goals for each Rust

0 commit comments

Comments
 (0)