We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dc06fb commit ecbdfcbCopy full SHA for ecbdfcb
book/src/recursive.md
@@ -35,7 +35,7 @@ impl A for i32 { }
35
which results in program clauses like:
36
37
```notrust
38
-forall<T> { Implemented(Vec<T>: A) :- Implemented(T: MyTrait) }
+forall<T> { Implemented(Vec<T>: A) :- Implemented(T: A) }
39
Implemented(u32: A)
40
Implemented(i32: A)
41
```
@@ -94,4 +94,4 @@ The [SLG solver] in contrast starts by exploring `?X = u32` and finds
94
that it works, and then later tries to explore `?X = i32` and finds that it
95
fails (because `i32: B` is not true).
96
97
-[SLG solver]: ./engine.md
+[SLG solver]: ./engine.md
0 commit comments