Skip to content

Commit 58ef5a7

Browse files
committed
Lines must be <= 80 characters UNLESS there is a link
1 parent 8cfd5c5 commit 58ef5a7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/chalk-overview.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ essentially one of the following:
5454

5555
* A [clause] of the form `consequence :- conditions` where `:-` is read as
5656
"if" and `conditions = cond1 && cond2 && ...`
57-
* A universally quantified clause of the form `forall<T> { consequence :- conditions }`
57+
* A universally quantified clause of the form
58+
`forall<T> { consequence :- conditions }`
5859
* `forall<T> { ... }` is used to represent [universal quantification]. See the
5960
section on [Lowering to logic][lowering-forall] for more information.
6061
* A key thing to note about `forall` is that we don't allow you to "quantify"
@@ -129,7 +130,7 @@ See [The SLG Solver][slg].
129130
[ast]: https://en.wikipedia.org/wiki/Abstract_syntax_tree
130131
[chalk-ast]: https://github.com/rust-lang-nursery/chalk/blob/master/chalk-parse/src/ast.rs
131132
[universal quantification]: https://en.wikipedia.org/wiki/Universal_quantification
132-
[lowering-forall]: traits-lowering-to-logic.html#type-checking-generic-functions-beyond-horn-clauses
133+
[lowering-forall]: https://rust-lang-nursery.github.io/rustc-guide/traits-lowering-to-logic.html#type-checking-generic-functions-beyond-horn-clauses
133134
[programclause]: https://github.com/rust-lang-nursery/chalk/blob/17abbabe53c2f78b04af04a9bc9e8a0e3fc676e3/src/ir/mod.rs#L721
134135
[clause]: https://github.com/rust-lang-nursery/chalk/blob/master/GLOSSARY.md#clause
135136
[well-formedness-checks]: https://github.com/rust-lang-nursery/chalk/blob/17abbabe53c2f78b04af04a9bc9e8a0e3fc676e3/src/ir/lowering/mod.rs#L230-L232

0 commit comments

Comments
 (0)