diff --git a/docs/style_guide.md b/docs/style_guide.md index 370426bcede81e2635bb4f39a24e54bd8dcd8441..66a069dc8576db8249ab2d6eff2bc1619512bc05 100644 --- a/docs/style_guide.md +++ b/docs/style_guide.md @@ -16,6 +16,32 @@ so we can add it. This applies to Context, Implicit Types, and definitions +### Patterns + +#### Disjunctions & branches + +Always mark the disjuncts when destructuring a disjunctive pattern, even if you don't bind anything, to indicate that the proof branches + +**Good:** +```coq +Lemma foo : ∀ b : bool, b = true ∨ b = false. +Proof. + intros [|]. + ... +``` + +**Bad:** +```coq +Lemma foo : ∀ b : bool, b = true ∨ b = false. +Proof. + intros []. + ... +``` + +#### Uncategorized + +**TODO:** Use `"[H1 H2]"` when possible otherwise do `"(H1 & H2 & H3)"` + ### Unicode Always use Unicode variants of forall, exists, ->, <=, >= @@ -147,8 +173,6 @@ Definition foo (arg1 arg2 arg3 : name_of_the_type) := the body that is very long. ``` -**TODO:** Use `"[H1 H2]"` when possible otherwise do `"(H1 & H2 & H3)"` - For tests with output put `Check "theorem name in a string"` before it so that the output from different tests is separated. For long `t1; t2; t3` and `t; [t1 | t2 | t3]` split them like this, and indent by 2 spaces: