Skip to content

Commit 360d1cc

Browse files
committed
coqdoc: fix syntax
1 parent dc1d9f2 commit 360d1cc

File tree

13 files changed

+26
-25
lines changed

13 files changed

+26
-25
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dist:
3030

3131
TEMPLATES ?= ../templates
3232

33-
docs/index.html: index.md
33+
index.html: index.md
3434
pandoc -s $^ -o $@
3535

3636
index.md: meta.yml

meta.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ documentation: |
6565
- Base directory to the provided theories
6666
6767
coqdoc_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)

theories/Data/Eq/UIP_trans.v

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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
**)
66
Section 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.

theories/Data/Fin.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Set Strict Implicit.
99
Set 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
**)
1414
Inductive 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.

theories/Data/HList.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ Arguments Hcons {_ _ _ _} _ _.
701701
Arguments 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
**)
706706
Section hlist_map.
707707
Variable A : Type.

theories/Data/Lazy.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Set Strict Implicit.
88
Definition 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
**)
1313
Definition _lazy {T : Type} (l : T) : Lazy T := fun _ => l.
1414

theories/Data/Monads/FuelMonad.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Arguments Diverge {_}.
1212
Arguments 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
**)
1717
Section gfix.
1818
(** This is essentially ReaderT (optionT m)) **)

theories/Data/Monads/WriterMonad.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
**)
133133
Section WriterMonad.
134134

theories/Data/Set/SetMap.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Set Implicit Arguments.
55
Set 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
(*
1111
Section SetFromMap.
@@ -26,4 +26,4 @@ Section SetFromMap.
2626
; singleton := fun v => Maps.add v tt Maps.empty
2727
}.
2828
End SetFromMap.
29-
*)
29+
*)

theories/Structures/MonadLaws.v

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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 :=

0 commit comments

Comments
 (0)