Skip to content

Commit 48748e9

Browse files
authored
fix: dfa example typo (#877)
1 parent 34b237a commit 48748e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Manual/RecursiveDefs/CoinductivePredicates.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ Coinductive predicates naturally capture bisimulation-like notions.
346346
```lean -show
347347
variable {Q : Type} {A : Type} {q : Q}
348348
```
349-
A deterministic finite automaton is given by a set of states {lean}`Q`, an alphabet {lean}`A`, a start state {lean}`q` in {lean}`Q`, a subset of {lean}`Q` the define accepting states, and a transition function that takes a state and an element of the alphabet to a new state:
349+
A deterministic finite automaton is given by a set of states {lean}`Q`, an alphabet {lean}`A`, a start state {lean}`q` in {lean}`Q`, a subset of {lean}`Q` that defines accepting states, and a transition function that takes a state and an element of the alphabet to a new state:
350350
:::
351351
```lean
352352
structure DFA (Q : Type) (A : Type) : Type where

0 commit comments

Comments
 (0)