diff options
| author | Maxime Dénès | 2018-06-04 16:29:05 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2018-06-04 16:29:05 +0200 |
| commit | 1136dde7b523047e6091d6e6decb45183e42fc21 (patch) | |
| tree | 777398203b608661f5c6c55ddab4cb20e8ff81b0 | |
| parent | f9e94fdcf74af274cb85be594ccfd353a63b048a (diff) | |
| parent | 1ecd8d9bfca2863a86adc833d634c3f02fdc14a8 (diff) | |
Merge PR #7601: Fix notation for code snippet in documentation
| -rw-r--r-- | doc/sphinx/proof-engine/tactics.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/sphinx/proof-engine/tactics.rst b/doc/sphinx/proof-engine/tactics.rst index 051c28f910..29e0b34bc6 100644 --- a/doc/sphinx/proof-engine/tactics.rst +++ b/doc/sphinx/proof-engine/tactics.rst @@ -2868,8 +2868,8 @@ the conversion in hypotheses :n:`{+ @ident}`. .. coqtop:: all Definition fcomp A B C f (g : A -> B) (x : A) : C := f (g x). - Notation "f \o g" := (fcomp f g) (at level 50). Arguments fcomp {A B C} f g x /. + Notation "f \o g" := (fcomp f g) (at level 50). After that command the expression :g:`(f \o g)` is left untouched by ``simpl`` while :g:`((f \o g) t)` is reduced to :g:`(f (g t))`. |
