Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,25 @@ We write
```

If all the subgoals have the same importance, use bullets for all of
them, however, if one goal is more important than the others
(i.e. is main flow of the proof). Then you might remove the bullet
them. However, if one goal is more important than the others
(i.e., is main flow of the proof), then you might remove the bullet
for this last one and unindent it as in:
```
tactic.
- tactic. (* secondary subgoal 1 *)
- tactic. (* secondary subgoal 2 *)
tactic. (* third subgoal is the main one *)
```
In this last cast, bullets can be removed as in:
```
tactic.
tactic. (* secondary subgoal 1 *)
tactic. (* secondary subgoal 2 *)
tactic. (* third subgoal is the main one *)
```
provided that it does not impair reading, for example when the secondary
subgoals are cleary appearing as such (e.g., one-liners, starting with
closing tacticals, preceded by a `last 2 first` tactical, etc.).

## Statements of lemmas, theorems and definitions

Expand Down
Loading