diff options
author | Maxime Dénès <mail@maximedenes.fr> | 2018-06-04 16:29:05 +0200 |
---|---|---|
committer | Maxime Dénès <mail@maximedenes.fr> | 2018-06-04 16:29:05 +0200 |
commit | 1136dde7b523047e6091d6e6decb45183e42fc21 (patch) | |
tree | 777398203b608661f5c6c55ddab4cb20e8ff81b0 /doc/sphinx/proof-engine | |
parent | f9e94fdcf74af274cb85be594ccfd353a63b048a (diff) | |
parent | 1ecd8d9bfca2863a86adc833d634c3f02fdc14a8 (diff) |
Merge PR #7601: Fix notation for code snippet in documentation
Diffstat (limited to 'doc/sphinx/proof-engine')
-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 051c28f91..29e0b34bc 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))`. |