@@ -16,7 +16,7 @@ opaque to the engine internals. Functions in the trait are agnostic to specific
1616program or environment details, since they lack a ` &self ` argument.
1717
1818To give an example, there is an associated [ ` Goal ` ] type. However, Chalk doesn't
19- know how to solve this. Instead, it has to be converted an [ ` HhGoal ` ] via the
19+ know how to solve this. Instead, it has to be converted an ` HhGoal ` via the
2020` Context::into_hh_goal ` function. This will be coverted more in the ` Goals `
2121section.
2222
@@ -38,7 +38,7 @@ change the state of the logic itself.
3838## Goals
3939
4040A "goal" in Chalk can be thought of as "something we want to prove". The engine
41- itself understands [ ` HhGoal ` ] s. ` HHGoal ` s consist of the most basic logic,
41+ itself understands ` HhGoal ` s. ` HHGoal ` s consist of the most basic logic,
4242such as introducing Binders (` Forall ` or ` Exists ` ) or combining goals (` All ` ).
4343On the other hand, ` Context::Goal ` represents an opaque goal generated
4444externally. As such, it may contain any extra information or may be interned.
@@ -111,7 +111,6 @@ stack).
111111[ `Context` ] : https://rust-lang.github.io/chalk/chalk_engine/context/trait.Context.html
112112[ `ContextOps` ] : https://rust-lang.github.io/chalk/chalk_engine/context/trait.ContextOps.html
113113[ `InferenceTable` ] : https://rust-lang.github.io/chalk/chalk_engine/context/trait.InferenceTable.html
114- [ `HhGoal` ] : https://rust-lang.github.io/chalk/chalk_engine/hh/enum.HhGoal.html
115114[ `Solution` ] : https://rust-lang.github.io/chalk/chalk_engine/context/trait.Context.html#associatedtype.Solution
116115[ `ExClause` ] : https://rust-lang.github.io/chalk/chalk_engine/struct.ExClause.html
117116[ `Strand` ] : https://rust-lang.github.io/chalk/chalk_engine/strand/struct.Strand.html
0 commit comments