Commit 4f38f170 authored by Adam Chlipala's avatar Adam Chlipala

Typo fix in template comment

parent 9a908b9e
...@@ -66,7 +66,7 @@ with falses_trues : stream bool := Cons false trues_falses. ...@@ -66,7 +66,7 @@ with falses_trues : stream bool := Cons false trues_falses.
(** Co-inductive values are fair game as arguments to recursive functions, and we can use that fact to write a function to take a finite approximation of a stream. *) (** Co-inductive values are fair game as arguments to recursive functions, and we can use that fact to write a function to take a finite approximation of a stream. *)
(* EX: Defint a function to calculate a finite approximation of a stream, to a particular length. *) (* EX: Define a function to calculate a finite approximation of a stream, to a particular length. *)
(* begin thide *) (* begin thide *)
Fixpoint approx A (s : stream A) (n : nat) : list A := Fixpoint approx A (s : stream A) (n : nat) : list A :=
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment