File tree Expand file tree Collapse file tree 13 files changed +26
-25
lines changed
Expand file tree Collapse file tree 13 files changed +26
-25
lines changed Original file line number Diff line number Diff line change 3030
3131TEMPLATES ?= ../templates
3232
33- docs/ index.html : index.md
33+ index.html : index.md
3434 pandoc -s $^ -o $@
3535
3636index.md : meta.yml
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ documentation: |
6565 - Base directory to the provided theories
6666
6767coqdoc_index : |
68+ - [0.11.2](v0.11.2/toc.html)
6869 - [0.11.1](v0.11.1/toc.html)
6970 - [0.11.0](v0.11.0/toc.html)
7071 - [0.10.3](v0.10.3/toc.html)
Original file line number Diff line number Diff line change 11(** The contents in this file are reconstructed from the proof of Bruno Barras
2- ** in the Coq standard library. It is duplicated so that the definitions
3- ** can be made transparent, and therefore computable.
4- ** See Coq.Logic.Eqdep_dec for complete information
2+ in the Coq standard library. It is duplicated so that the definitions
3+ can be made transparent, and therefore computable.
4+ See Coq.Logic.Eqdep_dec for complete information
55 * *)
66Section uip_trans.
77 Context {A : Type}.
@@ -65,4 +65,4 @@ Section uip_trans.
6565 | left pf => or_introl pf
6666 | right pf' => or_intror pf'
6767 end ).
68- End uip_trans.
68+ End uip_trans.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Set Strict Implicit.
99Set Asymmetric Patterns.
1010
1111(** `fin n` corresponds to "naturals less than `n`",
12- ** i.e. a finite set of size n
12+ i.e. a finite set of size n
1313 * *)
1414Inductive fin : nat -> Type :=
1515| F0 : forall {n}, fin (S n)
@@ -112,4 +112,4 @@ Proof.
112112 eapply H.
113113 inv_all ; subst.
114114 apply IHx. reflexivity.
115- Qed .
115+ Qed .
Original file line number Diff line number Diff line change @@ -701,7 +701,7 @@ Arguments Hcons {_ _ _ _} _ _.
701701Arguments equiv_hlist {_ F} R {_} _ _ : rename.
702702
703703(** Weak Map
704- ** This is weak because it does not change the key type
704+ This is weak because it does not change the key type
705705 * *)
706706Section hlist_map.
707707 Variable A : Type.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Set Strict Implicit.
88Definition Lazy (t : Type) : Type := unit -> t.
99
1010(** Note: in order for this to have the right behavior, it must
11- ** be beta-delta reduced.
11+ be beta-delta reduced.
1212 * *)
1313Definition _lazy {T : Type} (l : T) : Lazy T := fun _ => l.
1414
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Arguments Diverge {_}.
1212Arguments Term {_} _.
1313
1414(** The GFix monad is like monad fix except that
15- ** it encapsulates the "gas" that is used as the measure
15+ it encapsulates the "gas" that is used as the measure
1616 * *)
1717Section gfix.
1818 (** This is essentially ReaderT (optionT m)) * *)
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ End CastWriterT.
128128
129129
130130(** Simple wrapper around `writerT` specializing the underlying monad to `Identity`
131- ** which yields the `writer` monad.
131+ which yields the `writer` monad.
132132 * *)
133133Section WriterMonad.
134134
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Set Implicit Arguments.
55Set Strict Implicit .
66
77(** Canonical instance, a set is the same as a map where the values
8- ** are unit
8+ are unit
99 * *)
1010(*
1111Section SetFromMap.
@@ -26,4 +26,4 @@ Section SetFromMap.
2626 ; singleton := fun v => Maps.add v tt Maps.empty
2727 }.
2828End SetFromMap.
29- *)
29+ *)
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ Section MonadLaws.
1212 Variable M : Monad m.
1313
1414 (** This <= relation is a computational <= relation based on the ideas
15- ** of domain theory. It generalizes the usual equivalence relation by,
16- ** enabling the relation to talk about computations that are "more defined"
17- ** than others.
18- **
19- ** This generalization is done to support the fixpoint law.
15+ of domain theory. It generalizes the usual equivalence relation by,
16+ enabling the relation to talk about computations that are "more defined"
17+ than others.
18+
19+ This generalization is done to support the fixpoint law.
2020 * *)
2121
2222 Class MonadLaws :=
You can’t perform that action at this time.
0 commit comments