Skip to content

Commit 75a5f92

Browse files
committed
Fix chalk links
1 parent 3e1213e commit 75a5f92

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/traits/chalk-overview.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -230,23 +230,23 @@ Likewise, lowering tests use the [`lowering_success!` and
230230
[universal quantification]: https://en.wikipedia.org/wiki/Universal_quantification
231231

232232
[`ProgramClause`]: https://rust-lang.github.io/chalk/chalk_ir/enum.ProgramClause.html
233-
[`ProgramEnvironment`]: https://rust-lang.github.io/chalk/chalk/program_environment/struct.ProgramEnvironment.html
233+
[`ProgramEnvironment`]: https://rust-lang.github.io/chalk/chalk_integration/program_environment/struct.ProgramEnvironment.html
234234
[chalk_engine]: https://rust-lang.github.io/chalk/chalk_engine
235235
[chalk_ir]: https://rust-lang.github.io/chalk/chalk_ir/index.html
236236
[chalk_parse]: https://rust-lang.github.io/chalk/chalk_parse/index.html
237237
[chalk_solve]: https://rust-lang.github.io/chalk/chalk_solve/index.html
238238
[chalk_rust_ir]: https://rust-lang.github.io/chalk/chalk_rust_ir/index.html
239239
[doc-chalk]: https://rust-lang.github.io/chalk/chalk/index.html
240240
[engine-context]: https://rust-lang.github.io/chalk/chalk_engine/context/index.html
241-
[chalk-program]: https://rust-lang.github.io/chalk/chalk/program/struct.Program.html
241+
[chalk-program]: https://rust-lang.github.io/chalk/chalk_integration/program/struct.Program.html
242242

243243
[binders-struct]: https://rust-lang.github.io/chalk/chalk_ir/struct.Binders.html
244244
[chalk-ast]: https://rust-lang.github.io/chalk/chalk_parse/ast/index.html
245245
[chalk-test-example]: https://github.com/rust-lang/chalk/blob/4bce000801de31bf45c02f742a5fce335c9f035f/src/test.rs#L115
246246
[chalk-test-lowering-example]: https://github.com/rust-lang/chalk/blob/4bce000801de31bf45c02f742a5fce335c9f035f/src/rust_ir/lowering/test.rs#L8-L31
247247
[chalk-test-lowering]: https://github.com/rust-lang/chalk/blob/4bce000801de31bf45c02f742a5fce335c9f035f/src/rust_ir/lowering/test.rs
248248
[chalk-test-wf]: https://github.com/rust-lang/chalk/blob/4bce000801de31bf45c02f742a5fce335c9f035f/src/rules/wf/test.rs#L1
249-
[chalki]: https://rust-lang.github.io/chalk/chalki/index.html
249+
[chalki]: https://github.com/rust-lang/chalk/blob/master/src/main.rs
250250
[clause]: https://github.com/rust-lang/chalk/blob/master/GLOSSARY.md#clause
251251
[coherence-src]: https://rust-lang.github.io/chalk/chalk_solve/coherence/index.html
252252
[ir-code]: https://rust-lang.github.io/chalk/chalk_rust_ir/

src/traits/wf.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ say that the construct is well-formed. If not, we report an error to the user.
1313

1414
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
16-
an extended set of examples in the [`chalk/src/test/wf.rs`][wf_test] submodule.
16+
an extended set of examples in the [`chalk/tests/test/wf_lowering.rs`][wf_test] submodule.
1717

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

2020
[wf]: https://github.com/rust-lang/chalk/blob/master/chalk-solve/src/wf.rs
21-
[wf_test]: https://github.com/rust-lang/chalk/blob/master/src/test/wf_lowering.rs
21+
[wf_test]: https://github.com/rust-lang/chalk/blob/master/tests/test/wf_lowering.rs
2222

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

0 commit comments

Comments
 (0)