aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2018-06-04 16:29:05 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-06-04 16:29:05 +0200
commit1136dde7b523047e6091d6e6decb45183e42fc21 (patch)
tree777398203b608661f5c6c55ddab4cb20e8ff81b0 /doc
parentf9e94fdcf74af274cb85be594ccfd353a63b048a (diff)
parent1ecd8d9bfca2863a86adc833d634c3f02fdc14a8 (diff)
Merge PR #7601: Fix notation for code snippet in documentation
Diffstat (limited to 'doc')
-rw-r--r--doc/sphinx/proof-engine/tactics.rst2
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))`.