diff --git a/src/plfa/part2/DeBruijn.lagda.md b/src/plfa/part2/DeBruijn.lagda.md index 574258a3..249142b6 100644 --- a/src/plfa/part2/DeBruijn.lagda.md +++ b/src/plfa/part2/DeBruijn.lagda.md @@ -1066,9 +1066,9 @@ Given a term `L` of type `A`, the evaluator will, for some `N`, return a reduction sequence from `L` to `N` and an indication of whether reduction finished: ``` -data Steps : ∀ {A} → ∅ ⊢ A → Set where +data Steps {A} : ∅ ⊢ A → Set where - steps : ∀ {A} {L N : ∅ ⊢ A} + steps : {L N : ∅ ⊢ A} → L —↠ N → Finished N ----------