aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
Commit message (Collapse)AuthorAge
* Merge PR #7374: [sphinx] More fatal warnings.Gravatar Maxime Dénès2018-05-14
|\
* | Doc: Renaming an old-style numerical evar in an alphabetical one.Gravatar Hugo Herbelin2018-05-11
| |
* | Doc: Moving `\forall` to `forall` in file tactics.rst.Gravatar Hugo Herbelin2018-05-11
| | | | | | | | | | Not only are most of "forall"s in the manual in Coq notation, but the math notation leads to have a specially long space after the comma.
* | Doc: Some quotes missing in file tactics.rst.Gravatar Hugo Herbelin2018-05-11
| |
* | Replacing a broken reference by hyperlinks in chapter tactics.Gravatar Hugo Herbelin2018-05-11
| |
* | A few fixes in chapter tactics.Gravatar Hugo Herbelin2018-05-11
| |
* | Merge PR #7466: Remove tutorials from the repoGravatar Maxime Dénès2018-05-11
|\ \
| * | Suggest going to /documentation to see a list of tutorials.Gravatar Théo Zimmermann2018-05-10
| | |
| * | Remove tutorials.Gravatar Théo Zimmermann2018-05-10
| | |
* | | [sphinx] Improve proof handling chapter.Gravatar Théo Zimmermann2018-05-09
| | |
* | | Clarify that the description of coqtop does not reflect all user interfaces.Gravatar Théo Zimmermann2018-05-09
| | |
* | | [sphinx] Improvements around the Show commands, including missing indices ↵Gravatar Théo Zimmermann2018-05-09
|/ / | | | | | | and indentation.
| * [sphinx] Warn for dangling tacn / cmd / opt / ... references.Gravatar Clément Pit-Claudel2018-05-09
| |
| * [sphinx] Fix new warnings related to tacn, cmd, opt...Gravatar Théo Zimmermann2018-05-09
| |
| * Replacing a broken reference by hyperlinks in chapter tactics.Gravatar Hugo Herbelin2018-05-09
| |
| * A few fixes in chapter tactics.Gravatar Hugo Herbelin2018-05-09
|/
* [sphinx] Fixes around apply, including indentation and fixing a Coq warning.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Fixes around refine, including indentation and a hard-coded ref.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Improve typeclass chapter.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Add indices for only, all and par.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Improvements around injection tactic.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Improve part about Hints.Gravatar Théo Zimmermann2018-05-05
| | | | Fix Hint (Transparent | Opaque) index.
* [sphinx] Re-indent to get much better rendering.Gravatar Théo Zimmermann2018-05-05
| | | | | Add some more cmd references. And use deprecated directives.
* Remove duplicate Introduction title.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Backport changes from #5979.Gravatar Théo Zimmermann2018-05-05
|
* Two more uses of verbatim in doc.Gravatar Théo Zimmermann2018-05-05
|
* Clean-up around cmd documentation.Gravatar Théo Zimmermann2018-05-05
| | | | In particular, remove trailing dots.
* Remove duplicate Extraction commands documentation.Gravatar Théo Zimmermann2018-05-05
|
* Add some refs in the Omega chapter.Gravatar Théo Zimmermann2018-05-05
|
* More fixes in the Generalized Rewriting chapter.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Replace remaining `@natural` by `@num`.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] More use of cmd references in Extraction chapter.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Use references for command Info.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] More reference fixes.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Fix a porting mistake.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Use references for Print.Gravatar Théo Zimmermann2018-05-05
|
* Fix error messages and make them consistent.Gravatar Théo Zimmermann2018-05-05
| | | | All the error messages start with a capitalized letter and end with a dot.
* Add direct reference to congruence with.Gravatar Théo Zimmermann2018-05-05
|
* Clean-up around options.Gravatar Théo Zimmermann2018-05-05
| | | | | | - Remove all trailing dots. - There is only one Bullet Behavior option. - Replaces `@natural` and `@integer` by `@num`.
* debug trivial and debug auto were not in the tactic index.Gravatar Théo Zimmermann2018-05-05
|
* Fix failing example in refman.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Fix some references.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Use option direct reference.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Fix a typo that appeared during the migration.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Fix a hardcoded reference.Gravatar Théo Zimmermann2018-05-05
|
* [sphinx] Backport reformulation.Gravatar Théo Zimmermann2018-05-05
| | | | (cf. 711b9d8cdf6e25690d247d9e8c49f005527e64e2)
* [sphinx] Backport fix of typo.Gravatar Théo Zimmermann2018-05-05
| | | | (cf. 6131f89f6b91c45e641dd877df8719fa77987453)
* Fix typo in Coercions chapter.Gravatar Théo Zimmermann2018-05-05
|
* Make "intro"/"intros" progress on existential variables.Gravatar Hugo Herbelin2018-05-02
|
* Strict focusing using Default Goal Selector.Gravatar Gaëtan Gilbert2018-04-29
| | | | | | | | | | | | We add a [SelectAlreadyFocused] constructor to [goal_selector] (read "!") which causes a failure when there's not exactly 1 goal and otherwise is a noop. Then [Set Default Goal Selector "!".] puts us in "strict focusing" mode where we can only run tactics if we have only one goal or use a selector. Closes #6689.